Searched defs:name (Results 1 - 25 of 107) sorted by relevance

12345

/httpd/modules/proxy/
H A Dmod_proxy_fdpass.h34 const char *name; member in struct:proxy_fdpass_flush
H A Dmod_serf.h52 * Human readable name of this provider, used in configuration.
54 const char *name; member in struct:ap_serf_cluster_provider_t
H A Dmod_proxy_express.c109 const char *name; local
140 name = ap_get_server_name(r);
142 "proxy_express: looking for %s", name);
143 key.dptr = (char *)name;
158 "proxy_express: found %s -> %s", name, backend);
/httpd/modules/dav/main/
H A Dproviders.c24 DAV_DECLARE(void) dav_register_provider(apr_pool_t *p, const char *name, argument
27 ap_register_provider(p, DAV_PROVIDER_GROUP, name, "0", provider);
30 DAV_DECLARE(const dav_provider *) dav_lookup_provider(const char *name) argument
32 return ap_lookup_provider(DAV_PROVIDER_GROUP, name, "0");
36 const char *name,
39 ap_register_provider(p, DAV_OPTIONS_EXTENSION_GROUP, name, "0", provider);
42 DAV_DECLARE(const dav_options_provider *) dav_get_options_providers(const char *name) argument
44 return ap_lookup_provider(DAV_OPTIONS_EXTENSION_GROUP, name, "0");
49 const char *name,
52 ap_register_provider(p, DAV_RESOURCE_TYPE_GROUP, name, "
35 dav_options_provider_register(apr_pool_t *p, const char *name, const dav_options_provider *provider) argument
48 dav_resource_type_provider_register(apr_pool_t *p, const char *name, const dav_resource_type_provider *provider) argument
55 dav_get_resource_type_providers(const char *name) argument
[all...]
H A Dliveprop.c83 DAV_DECLARE(int) dav_do_find_liveprop(const char *ns_uri, const char *name, argument
101 for (scan = group->specs; scan->name != NULL; ++scan)
102 if (ns == scan->ns && strcmp(name, scan->name) == 0) {
107 /* not our property (same namespace, but no matching prop name) */
117 for (scan = group->specs; scan->name != NULL; ++scan) {
H A Dstd_liveprop.c83 const char *name = NULL, *uri = NULL; local
88 if (!res_hooks->get_resource_type(resource, &name, &uri) &&
89 name) {
93 "<D:", name, "/>", NULL);
96 "<x:", name,
154 /* assert: info != NULL && info->name != NULL */
158 "<D:supported-live-property D:name=\"%s\" "
160 info->name, dav_core_namespace_uris[info->ns]);
164 global_ns, info->name, value, global_ns, info->name);
204 dav_core_find_liveprop( const dav_resource *resource, const char *ns_uri, const char *name, const dav_hooks_liveprop **hooks) argument
[all...]
/httpd/include/
H A Dutil_cookies.h50 const char *name; member in struct:__anon42
60 * @param name The name of the cookie.
68 AP_DECLARE(apr_status_t) ap_cookie_write(request_rec * r, const char *name,
77 * @param name2 The name of the cookie.
94 * @param name The name of the cookie.
100 AP_DECLARE(apr_status_t) ap_cookie_remove(request_rec * r, const char *name,
108 * @param name2 The name of the cookie.
119 * Read a cookie called name, placin
[all...]
H A Dap_slotmem.h90 const char *name; member in struct:ap_slotmem_provider_t
104 * @param name a key used for debugging and in mod_status output or allow another process to share this space.
111 apr_status_t (* create)(ap_slotmem_instance_t **inst, const char *name, apr_size_t item_size, unsigned int item_num, ap_slotmem_type_t type, apr_pool_t *pool);
116 * @param name a key used for debugging and in mod_status output or allow another process to share this space.
122 apr_status_t (* attach)(ap_slotmem_instance_t **inst, const char *name, apr_size_t *item_size, unsigned int *item_num, apr_pool_t *pool);
H A Dap_socache.h90 /** Canonical provider name. */
91 const char *name; member in struct:ap_socache_provider_t
115 * within the server; using the module name is recommended, e.g.
222 /** Default provider name. */
H A Dapreq_parser.h273 const char *name; member in struct:apreq_hook_find_param_ctx_t
282 * to an apreq_hook_find_param_ctx_t *, with the name
283 * attribute set to the sought parameter name, the param
H A Dap_expr.h191 * name into a function pointer and an opaque context for the function.
205 * The name must have the form '-z' (one letter only).
215 * The name must have the form '-cmp' (at least two letters).
273 /** name of the looked up object */
274 const char *name; member in struct:__anon3
301 * DECLINED if the requested name is not handled by this function
H A Dapreq.h71 * Check to see if specified bit f is off in bitfield name
73 #define APREQ_FLAGS_OFF(f, name) ((f) &= ~(name##_MASK << name##_BIT))
75 * Check to see if specified bit f is on in bitfield name
77 #define APREQ_FLAGS_ON(f, name) ((f) |= (name##_MASK << name##_BIT))
79 * Get specified bit f in bitfield name
81 #define APREQ_FLAGS_GET(f, name) (((
191 char *name; /**< value name */ member in struct:apreq_value_t
[all...]
H A Dapreq_module.h57 /** name of this apreq module */
58 const char *name; member in struct:apreq_module_t
69 /** get a cookie by its name */
71 /** get a query string parameter by its name */
73 /** get a body parameter by its name */
172 * Fetch the first cookie with the given name.
175 * @param name Case-insensitive cookie name.
180 apreq_cookie_t *apreq_jar_get(apreq_handle_t *req, const char *name) argument
182 return req->module->jar_get(req, name);
194 apreq_args_get(apreq_handle_t *req, const char *name) argument
208 apreq_body_get(apreq_handle_t *req, const char *name) argument
[all...]
H A Dutil_filter.h97 * @name Filter callbacks
108 * by name. See ap_register_input_filter() and ap_register_output_filter()
109 * for setting the association between a name for a filter and its
204 * registered filters. It associates a name with the filter's callback
216 /** The registered name for this filter */
217 const char *name; member in struct:ap_filter_rec_t
261 * the filter's name, type, and the actual function pointer.
342 * specifying the name.
344 * @param name The name t
[all...]
H A Dutil_ldap.h188 char *name; member in struct:mod_auth_ldap_groupattr_entry_t
/httpd/modules/database/
H A Dmod_dbd.h62 const char *name; member in struct:__anon101
/httpd/server/
H A Dutil_cookies.c34 * @param name The name of the cookie.
40 AP_DECLARE(apr_status_t) ap_cookie_write(request_rec * r, const char *name, const char *val,
56 rfc2109 = apr_pstrcat(r->pool, name, "=", val, ";", buffer,
76 * @param name2 The name of the cookie.
118 * @param name The name of the cookie.
120 AP_DECLARE(apr_status_t) ap_cookie_remove(request_rec * r, const char *name, const char *attrs, ...)
126 const char *rfc2109 = apr_pstrcat(r->pool, name, "=;Max-Age=0;",
146 * @param name2 The name o
181 const char *name = apr_pstrcat(v->r->pool, v->name ? v->name : "", "=", NULL); local
[all...]
H A Dapreq_param.c30 const char *name,
54 v->name = v->data + vlen + 1;
55 if (nlen && name != NULL)
56 memcpy(v->name, name, nlen);
57 v->name[nlen] = 0;
98 v->name = v->data + vlen + 1;
100 status = apreq_decode(v->name, &v->nlen, word, nlen);
106 switch (apreq_charset_divine(v->name, v->nlen)) {
134 dlen = apreq_encode(data, param->v.name, para
29 apreq_param_make(apr_pool_t *p, const char *name, const apr_size_t nlen, const char *val, const apr_size_t vlen) argument
266 apreq_upload(const apr_table_t *body, const char *name) argument
[all...]
/httpd/modules/apreq/
H A Dhandle.c93 static apreq_cookie_t *apache2_jar_get(apreq_handle_t *handle, const char *name) argument
107 val = apr_table_get(t, name);
114 static apreq_param_t *apache2_args_get(apreq_handle_t *handle, const char *name) argument
128 val = apr_table_get(t, name);
162 static apreq_param_t *apache2_body_get(apreq_handle_t *handle, const char *name) argument
179 val = apr_table_get(ctx->body, name);
195 val = apr_table_get(ctx->body, name);
211 hook_ctx->name = name;
230 val = apr_table_get(ctx->body, name);
[all...]
/httpd/modules/arch/unix/
H A Dmod_unixd.c90 const char *name; local
100 "getpwuid: couldn't determine user name from uid %ld, "
106 name = ent->pw_name;
109 name = ap_unixd_config.user_name;
126 if (initgroups(name, ap_unixd_config.group_id) == -1) {
129 "and Group %ld", name, (long)ap_unixd_config.group_id);
344 apr_file_printf(out, "User: name=\"%s\" id=%lu%s\n",
346 apr_file_printf(out, "Group: name=\"%s\" id=%lu%s\n",
/httpd/modules/metadata/
H A Dmod_env.c112 const char *name, const char *value)
116 /* name is mandatory, value is optional. no value means
119 apr_table_setn(sconf->vars, name, value ? value : "");
144 OR_FILEINFO, "an environment variable name and optional value to pass to CGI."),
111 add_env_module_vars_set(cmd_parms *cmd, void *sconf_, const char *name, const char *value) argument
/httpd/modules/ssl/
H A Dssl_engine_log.c45 { "*SSL3_READ_BYTES:sslv3*alert*bad*certificate*", "Subject CN in certificate not server name or identical to CA!?" },
124 char *name; local
137 * for holding both the timestamp, module name, pid etc. stuff
144 name = SSL_X509_NAME_to_string(p, X509_get_subject_name(cert),
146 if (!strIsEmpty(name)) {
147 BIO_puts(bio, name);
153 name = SSL_X509_NAME_to_string(p, X509_get_issuer_name(cert),
155 if (!strIsEmpty(name)) {
156 BIO_puts(bio, name);
203 * as well (for temporary allocation of the cert's subject/issuer name string
[all...]
/httpd/modules/aaa/
H A Dmod_authn_core.c221 return apr_pstrcat(cmd->pool, cmd->cmd->name,
228 return apr_pstrcat(cmd->pool, cmd->cmd->name,
232 /* Pull the real provider name and the alias name from the block header */
237 return apr_pstrcat(cmd->pool, cmd->cmd->name,
243 "The alias provider name must be different from the base provider name.", NULL);
274 /* Save off the new directory config along with the original provider name
359 const char *err = NULL, *name; local
365 name
[all...]
H A Dmod_authn_dbd.c154 const char *name; local
155 for (name = apr_dbd_get_name(dbd->driver, res, i);
156 name != NULL;
157 name = apr_dbd_get_name(dbd->driver, res, i)) {
160 name,
250 const char *name; local
251 for (name = apr_dbd_get_name(dbd->driver, res, i);
252 name != NULL;
253 name = apr_dbd_get_name(dbd->driver, res, i)) {
256 name,
[all...]
/httpd/modules/cache/
H A Dmod_cache_disk.h48 const char *name; /* Requested URI without vary bits - suitable for mortals. */ member in struct:disk_cache_object

Completed in 123 milliseconds

12345