Cross Reference: /httpd/modules/dav/main/mod_dav.c

Lines Matching defs:provider

82     const dav_provider *provider;
181 newconf->provider = DAV_INHERIT_VALUE(parent, child, provider);
191 "A subtree cannot specify a different DAV provider "
212 /* assert: conf->provider != NULL
214 return conf->provider;
254 conf->provider = NULL;
261 /* lookup and cache the actual provider now */
262 conf->provider = dav_lookup_provider(conf->provider_name);
264 if (conf->provider == NULL) {
265 /* by the time they use it, the provider should be loaded and
268 "Unknown DAV provider: %s",
699 * If use_checked_in is true, then the repository provider should return
716 /* assert: conf->provider != NULL */
717 if (conf->provider == NULL) {
725 err = (*conf->provider->repos->get_resource)(r, conf->dir,
739 "The provider did not define a "
1543 /* If no search provider, decline the request */
1666 * live prop provider namespace URIs.
1672 * If there is a versioning provider, generate DAV headers
1701 * All cases support OPTIONS, and if there is a lock provider, LOCK.
1762 /* If there is a versioning provider, add versioning methods */
1795 /* If there is a bindings provider, see if resource is bindable */
1801 /* If there is a search provider, set SEARCH in option */
1901 /* if unrecognized option, pass to versioning provider */
2129 /* Have the provider walk the resource. */
2856 * ### know that fact from outside the provider :-(
3039 /* If no locks provider, decline the request */
3215 /* If no locks provider, decline the request */
3308 /* if no versioning provider, decline the request */
3497 /* If no versioning provider, decline the request */
3633 /* If no versioning provider, decline the request */
3699 /* If no versioning provider, decline the request */
3779 /* If no versioning provider, or UPDATE not supported,
3928 /* version provider hooks */
3985 /* If no versioning provider, or the provider doesn't support
4107 /* If no versioning provider, decline the request */
4171 /* if no versioning provider, or the provider does not support workspaces,
4235 /* if no versioning provider, or the provider does not support activities,
4265 /* the provider must say whether the resource can be created as
4315 /* If no versioning provider, decline the request */
4446 /* If no bindings provider, decline the request */
4823 if (conf->provider == NULL) {
4828 the provider maps to the filesystem (thus, handle_get is
4844 if (!conf->provider->repos->handle_get) {
4887 "specify the DAV provider for a directory or location"),