Lines Matching defs:methods
26 * set of methods -- there is NO HOOK for us.
102 /* DAV methods */
116 /* Register DAV methods */
613 /* handy function for return values of methods that (may) create things.
1288 const apr_table_t *methods,
1301 /* show all supported methods */
1302 arr = apr_table_elts(methods);
1317 /* check for support of specific methods */
1337 if (apr_table_get(methods, name) != NULL) {
1603 apr_table_t *methods = apr_table_make(r->pool, 12);
1698 * Determine which methods are allowed on the resource.
1707 apr_table_addn(methods, "OPTIONS", "");
1714 apr_table_addn(methods, "GET", "");
1715 apr_table_addn(methods, "HEAD", "");
1716 apr_table_addn(methods, "POST", "");
1717 apr_table_addn(methods, "DELETE", "");
1718 apr_table_addn(methods, "TRACE", "");
1719 apr_table_addn(methods, "PROPFIND", "");
1720 apr_table_addn(methods, "PROPPATCH", "");
1721 apr_table_addn(methods, "COPY", "");
1722 apr_table_addn(methods, "MOVE", "");
1725 apr_table_addn(methods, "PUT", "");
1728 apr_table_addn(methods, "LOCK", "");
1729 apr_table_addn(methods, "UNLOCK", "");
1736 apr_table_addn(methods, "MKCOL", "");
1737 apr_table_addn(methods, "PROPFIND", "");
1738 apr_table_addn(methods, "PUT", "");
1741 apr_table_addn(methods, "LOCK", "");
1742 apr_table_addn(methods, "UNLOCK", "");
1749 apr_table_addn(methods, "MKCOL", "");
1750 apr_table_addn(methods, "PUT", "");
1753 apr_table_addn(methods, "LOCK", "");
1762 /* If there is a versioning provider, add versioning methods */
1766 apr_table_addn(methods, "VERSION-CONTROL", "");
1770 apr_table_addn(methods, "MKWORKSPACE", "");
1774 apr_table_addn(methods, "MKACTIVITY", "");
1778 apr_table_addn(methods, "VERSION-CONTROL", "");
1781 apr_table_addn(methods, "CHECKIN", "");
1784 apr_table_addn(methods, "UNCHECKOUT", "");
1787 apr_table_addn(methods, "CHECKOUT", "");
1788 apr_table_addn(methods, "LABEL", "");
1791 apr_table_addn(methods, "CHECKOUT", "");
1798 apr_table_addn(methods, "BIND", "");
1803 apr_table_addn(methods, "SEARCH", "");
1806 /* additional methods registered by external modules */
1819 apr_table_addn(methods, t->text, "");
1824 arr = apr_table_elts(methods);
1885 err = dav_gen_supported_methods(r, elem, methods, &body);
2615 /* handle the COPY and MOVE methods */
4656 * Set up the methods mask, since that's one of the reasons this handler
4659 * First, set the mask to the methods we handle directly. Since by
4664 * These are the HTTP-defined methods that we handle directly.
4674 * These are the DAV methods we handle.
4686 * These are methods that we don't handle directly, but let the
4699 * ### also, there is the issue with other methods (see ISSUES)
4805 /* ### add'l methods for Advanced Collections, ACLs */