Searched refs:name (Results 1 - 25 of 167) sorted by relevance

1234567

/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 Dprops.c36 ** (see below). propname is simply the property name, without a namespace
46 ** The propname will contain the prefix and the property name. For
47 ** example, a key might be ":xmlfoo:name"
49 ** The ":name" style will also be used for properties that do not
274 priv->propid = dav_find_liveprop_provider(propdb, ns_uri, elem->name,
335 int propid, const char *name,
425 "<D:supported-live-property D:name=\"%s\"/>" DEBUG_CR,
426 name);
431 name, value, name);
334 dav_insert_coreprop(dav_propdb *propdb, int propid, const char *name, dav_prop_insert what, apr_text_header *phdr, dav_prop_insert *inserted) argument
468 dav_output_prop_name(apr_pool_t *pool, const dav_prop_name *name, dav_xmlns_info *xi, apr_text_header *phdr) argument
600 dav_prop_name name; local
735 dav_prop_name name; local
1019 dav_prop_name name; local
1057 (void) (*propdb->db_hooks->remove)(propdb->db, &name); local
[all...]
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 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 Dap_hooks.h71 * @param name The hook's name (as a literal)
74 #define AP_DECLARE_HOOK(ret,name,args) \
75 APR_DECLARE_EXTERNAL_HOOK(ap,AP,ret,name,args)
78 #define AP_IMPLEMENT_HOOK_BASE(name) \
79 APR_IMPLEMENT_EXTERNAL_HOOK_BASE(ap,AP,name)
84 * is called ap_run_<i>name</i>.
86 * @param name The name of the hook
94 #define AP_IMPLEMENT_HOOK_VOID(name,args_dec
[all...]
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 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...]
/httpd/support/
H A Dlist_hooks.pl69 my($ret,$name,$args);
70 while(!(($ret,$name,$args)=
81 # print "found $ret $name($args) in $file\n";
83 croak "$name declared twice! ($_)"
84 if exists $::Hooks{$name}->{declared};
85 $::Hooks{$name}->{declared}=$file;
86 $::Hooks{$name}->{ret}=$ret;
87 $::Hooks{$name}->{args}=$args;
91 my($type,$name)=($1 ? "OPTIONAL $2" : $2,$3);
93 # print "found $name
[all...]
H A Dcheck_forensic22 name="/tmp/$1.$$"
25 name=`mktemp -t $1.XXXXXX`
28 name=`tempfile --prefix=$1`
38 all=$name
40 in=$name
42 out=$name
/httpd/modules/mappers/
H A Dmod_rewrite.h39 (char *name, rewrite_mapfunc_t *func));
/httpd/modules/proxy/
H A Dmod_proxy_fdpass.h34 const char *name; member in struct:proxy_fdpass_flush
/httpd/build/
H A Dconfig-stubs18 configfiles=`find os server modules support -name "config*.m4" | \
H A DcpR_noreplace.pl32 my $rel_to_srcdir = substr($File::Find::name, length($srcdir));
35 if (-d $File::Find::name) {
49 copy($File::Find::name, $destfile) or die "Copy $File::Find::name->$destfile failed: $!";
H A Ddefault.pl35 <frame src="master.html" name="Master Index" noresize>
36 <frame src="packages.html" name="Documentation">
70 >><a href="$_" target="Documentation"><b>$(p.name)</b></a><br>
119 >><a href = "$_">$(p.name)</a><br>
183 file $p->name() . ".html";
186 <title>$project_name -- $(p.name)</title>
194 <h2>Package Name: $(p.name)</h2>
225 <a name="$(c.anchor)"></a>
258 my $name = $b->name();
[all...]
/httpd/modules/core/test/conf/
H A Dtest27.conf3 <Macro foo $dir $name>
4 <Macro foo.$name>
6 Warning "foo.$name $dir"
/httpd/modules/core/
H A Dmod_macro.c57 this is a macro: name, arguments, contents, location.
61 char *name; /* lower case name of the macro */ member in struct:__anon95
82 hash type: (char *) name -> (ap_macro_t *) macro
124 what, cfg->line_number, cfg->name, ptr);
232 generates an error on macro with two arguments of the same name.
233 generates an error if a macro argument name is empty.
234 generates a warning if arguments name prefixes conflict.
250 "macro '%s' (%s): empty argument #%d name",
251 macro->name, macr
335 substitute(char *buf, const int bufsize, const char *name, const char *replacement, const int do_esc) argument
693 char *endp, *name, *where; local
802 char *name, *recursion, *where; local
883 char *name; local
[all...]
H A Dmod_watchdog.h52 * Default singleton watchdog instance name.
60 * Default watchdog instance name
117 * @param name Watchdog name.
123 * If separate watchdog thread is needed provide unique name
128 (ap_watchdog_t **watchdog, const char *name, int parent,
158 * @param name Watchdog name.
168 const char *name,
176 * @param name Watchdo
[all...]
H A Dmod_so.c49 * The first argument is the module's structure name (look at the end of the
81 * of the GNU libtool 1.2 package. Search for your platform name inside the
104 * loaded modules and the corresponding module name.
142 modi->name = NULL;
159 cmd->cmd->name, filename);
211 if (modi->name != NULL && strcmp(modi->name, modname) == 0) {
227 * make sure name of preloaded module is mod_FOO.c
228 * make sure name of structure being loaded is FOO_module
231 if (memcmp(modp->name, "mod
[all...]
/httpd/server/
H A Dutil_expr_private.h122 /* create parse tree node for the string-returning function 'name' */
123 ap_expr_t *ap_expr_str_func_make(const char *name, const ap_expr_t *arg,
125 /* create parse tree node for the list-returning function 'name' */
126 ap_expr_t *ap_expr_list_func_make(const char *name, const ap_expr_t *arg,
128 /* create parse tree node for the variable 'name' */
129 ap_expr_t *ap_expr_var_make(const char *name, ap_expr_parse_ctx_t *ctx);
130 /* create parse tree node for the unary operator 'name' */
131 ap_expr_t *ap_expr_unary_op_make(const char *name, const ap_expr_t *arg,
133 /* create parse tree node for the binary operator 'name' */
134 ap_expr_t *ap_expr_binary_op_make(const char *name, cons
[all...]
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_cookie.c67 case 'n': /* name is not an attr */
135 const char *name,
154 v->name = v->data + vlen + 1;
155 if (nlen && name != NULL)
156 memcpy(v->name, name, nlen);
157 v->name[nlen] = 0;
329 const char *name, *value; local
361 status = get_pair(p, &hdr, &name, &nlen, &value, &vlen, 1);
367 status = apreq_cookie_attr(p, c, name, nle
134 apreq_cookie_make(apr_pool_t *p, const char *name, const apr_size_t nlen, const char *value, const apr_size_t vlen) argument
[all...]
/httpd/modules/slotmem/
H A Dmod_slotmem_plain.c26 char *name; /* per segment name */ member in struct:ap_slotmem_instance_t
66 static apr_status_t slotmem_create(ap_slotmem_instance_t **new, const char *name, apr_size_t item_size, unsigned int item_num, ap_slotmem_type_t type, apr_pool_t *pool) argument
74 if (name) {
75 if (name[0] == ':')
76 fname = name;
78 fname = ap_runtime_dir_relative(pool, name);
83 if (strcmp(next->name, fname) == 0) {
105 res->name = apr_pstrdup(gpool, fname);
120 static apr_status_t slotmem_attach(ap_slotmem_instance_t **new, const char *name, apr_size_ argument
[all...]
/httpd/modules/dav/fs/
H A Ddbm.c303 static apr_datum_t dav_build_key(dav_db *db, const dav_prop_name *name) argument
306 apr_size_t l_ns, l_name = strlen(name->name);
311 * so the keys will have the form ":name". Otherwise, the keys will
312 * have the form "#:name".
314 if (*name->ns == '\0') {
319 long ns_id = (long)apr_hash_get(db->uri_index, name->ns,
331 /* assemble: #:name */
335 memcpy(&db->wb_key.buf[l_ns + 1], name->name, l_nam
344 dav_append_prop(apr_pool_t *pool, const char *name, const char *value, apr_text_header *phdr) argument
537 dav_propdb_output_value(dav_db *db, const dav_prop_name *name, dav_xmlns_info *xi, apr_text_header *phdr, int *found) argument
610 dav_propdb_store(dav_db *db, const dav_prop_name *name, const apr_xml_elem *elem, dav_namespace_map *mapping) argument
634 dav_propdb_remove(dav_db *db, const dav_prop_name *name) argument
640 dav_propdb_exists(dav_db *db, const dav_prop_name *name) argument
715 dav_propdb_get_rollback(dav_db *db, const dav_prop_name *name, dav_deadprop_rollback **prollback) argument
[all...]
/httpd/modules/metadata/
H A Dmod_usertrack.c168 * with the real cookie name set by the user in httpd.conf, or with the
275 * we need to compile the regexp for the default cookie name. */
358 const char *name)
362 dcfg->cookie_name = name;
364 set_and_comp_regexp(dcfg, cmd->pool, name);
370 return apr_pstrcat(cmd->pool, "Invalid cookie name \"",
371 name, "\"", NULL);
381 const char *name)
390 if (!name[0]) {
393 if (name[
357 set_cookie_name(cmd_parms *cmd, void *mconfig, const char *name) argument
380 set_cookie_domain(cmd_parms *cmd, void *mconfig, const char *name) argument
407 set_cookie_style(cmd_parms *cmd, void *mconfig, const char *name) argument
[all...]
/httpd/modules/session/
H A Dmod_session_cookie.c31 const char *name; member in struct:__anon310
69 ap_cookie_write(r, conf->name, z->encoded, conf->name_attrs,
74 ap_cookie_remove(r, conf->name, conf->name_attrs, r->headers_out,
100 * Isolate the cookie with the name "name", and if present, extract
104 * same name are removed from the cookies passed in the request, so
121 const char *name = NULL; local
135 name = conf->name2;
138 name = conf->name;
[all...]

Completed in 258 milliseconds

1234567