Searched defs:child (Results 1 - 10 of 10) sorted by relevance

/httpd/server/
H A Dutil_cfgtree.c21 ap_directive_t *toadd, int child)
29 if (child) {
38 if (child) {
39 /* switch parents, navigate into child */
20 ap_add_node(ap_directive_t **parent, ap_directive_t *current, ap_directive_t *toadd, int child) argument
H A Dutil_filter.c57 filter_trie_node *child; member in struct:__anon387
76 filter_trie_node *child, int c)
100 parent->children[j].child = parent->children[j - 1].child;
103 parent->children[i].child = child;
110 * key 'c' (or, if an existing child node matches, return that one)
120 return parent->children[i].child;
170 node = node->children[middle].child;
223 filter_trie_node *child local
75 trie_node_link(apr_pool_t *p, filter_trie_node *parent, filter_trie_node *child, int c) argument
[all...]
/httpd/server/mpm/simple/
H A Dsimple_children.c37 simple_child_t *child = NULL; local
42 apr_hash_this(hi, NULL, NULL, (void **)&child);
43 apr_hash_set(sc->children, &child->pid, sizeof(child->pid), NULL);
47 if (child != NULL) {
48 kill(child->pid, 9);
49 /* TODO: recycle child object */
82 /* this is the child process */
101 simple_child_t *child; local
105 child
[all...]
/httpd/modules/dav/fs/
H A Dmod_dav_fs.c58 dav_fs_server_conf *child = overrides; local
64 child->lockdb_path ? child->lockdb_path : parent->lockdb_path;
/httpd/modules/dav/lock/
H A Dmod_dav_lock.c51 dav_lock_dir_conf *child = overrides; local
57 child->lockdb_path ? child->lockdb_path : parent->lockdb_path;
/httpd/modules/dav/main/
H A Dutil_lock.c178 apr_xml_elem *child; local
203 for (child = doc->root->first_child; child; child = child->next) {
204 if (strcmp(child->name, "locktype") == 0
205 && child->first_child
207 if (strcmp(child->first_child->name, "write") == 0) {
212 if (strcmp(child->name, "lockscope") == 0
213 && child
[all...]
H A Dutil.c323 /* find and return the (unique) child with a given DAV: tagname */
327 apr_xml_elem *child = elem->first_child; local
329 for (; child; child = child->next)
330 if (child->ns == APR_XML_NS_DAV_ID && !strcmp(child->name, tagname))
331 return child;
341 const apr_xml_elem *child; local
354 for (child
[all...]
H A Dmod_dav.c95 #define DAV_INHERIT_VALUE(parent, child, field) \
96 ((child)->field ? (child)->field : (parent)->field)
137 dav_server_conf *child = overrides;
174 dav_dir_conf *child = overrides; local
180 newconf->provider_name = DAV_INHERIT_VALUE(parent, child, provider_name);
181 newconf->provider = DAV_INHERIT_VALUE(parent, child, provider);
183 if (child->provider_name == NULL) {
188 else if (strcasecmp(child->provider_name,
196 newconf->locktimeout = DAV_INHERIT_VALUE(parent, child, locktimeou
1293 apr_xml_elem *child; local
1360 apr_xml_elem *child; local
1448 apr_xml_elem *child; local
2293 apr_xml_elem *child; local
3328 const apr_xml_elem *child; local
3535 const apr_xml_elem *child = aset->first_child; local
3769 apr_xml_elem *child; local
3977 apr_xml_elem *child; local
[all...]
/httpd/modules/mappers/
H A Dmod_vhost_alias.c87 mva_sconf_t *child = (mva_sconf_t *) childv; local
91 if (child->doc_root_mode == VHOST_ALIAS_UNSET) {
96 conf->doc_root_mode = child->doc_root_mode;
97 conf->doc_root = child->doc_root;
99 if (child->cgi_root_mode == VHOST_ALIAS_UNSET) {
104 conf->cgi_root_mode = child->cgi_root_mode;
105 conf->cgi_root = child->cgi_root;
/httpd/modules/aaa/
H A Dmod_authz_core.c387 authz_section_conf *child; local
448 child = conf->section->first;
450 if (child) {
451 while (child->next) {
452 child = child->next;
455 child->next = section;
523 authz_section_conf *child; local
543 child = old_section->first;
545 if (child) {
592 authz_section_conf *child = section->first; local
744 authz_section_conf *child = section->first; local
[all...]

Completed in 140 milliseconds