/httpd/server/ |
H A D | util_cfgtree.c | 20 ap_directive_t *ap_add_node(ap_directive_t **parent, ap_directive_t *current, argument 24 /* we just started a new parent */ 25 if (*parent != NULL) { 26 (*parent)->first_child = toadd; 27 toadd->parent = *parent; 31 *parent = toadd; 37 toadd->parent = *parent; 40 *parent [all...] |
H A D | util_filter.c | 73 /* Link a trie node to its parent 75 static void trie_node_link(apr_pool_t *p, filter_trie_node *parent, argument 80 if (parent->nchildren == parent->size) { 82 parent->size *= 2; 83 new = (filter_trie_child_ptr *)apr_palloc(p, parent->size * 85 memcpy(new, parent->children, parent->nchildren * 87 parent->children = new; 90 for (i = 0; i < parent 112 trie_node_alloc(apr_pool_t *p, filter_trie_node *parent, char c) argument [all...] |
H A D | config.c | 845 ap_directive_t *parent) 874 parms->parent = parent; 1095 ap_directive_t *parent); 1159 (*current)->parent = (*curr_parent); 1171 (*current)->parent = (*curr_parent); 1211 *curr_parent = (*current)->parent; 1429 curr_parent = curr_parent->parent; 1657 ap_directive_t *parent) 1679 retval = invoke_cmd(cmd, parms, sub_tree, args, parent); 843 invoke_cmd(const command_rec *cmd, cmd_parms *parms, void *mconfig, const char *args, ap_directive_t *parent) argument 1653 execute_now(char *cmd_line, const char *args, cmd_parms *parms, apr_pool_t *p, apr_pool_t *ptemp, ap_directive_t **sub_tree, ap_directive_t *parent) argument [all...] |
H A D | core.c | 1137 /* returns a parent if it matches the given directive */ 1141 while (dirp->parent != NULL) { 1142 dirp = dirp->parent; 1345 if (cmd->parent && strcasecmp(cmd->parent->directive, "<VirtualHost")) { 1346 return apr_pstrcat(cmd->pool, cmd->cmd->name, " is not valid in ", cmd->parent->directive, " context", NULL); 1372 if (cmd->parent && strcasecmp(cmd->parent->directive, "<VirtualHost")) { 1373 return apr_pstrcat(cmd->pool, cmd->cmd->name, " is not valid in ", cmd->parent->directive, " context", NULL); 2612 ap_directive_t *parent local 2666 ap_directive_t *parent = NULL; local [all...] |
/httpd/include/ |
H A D | util_cfgtree.h | 56 /** The parent node of this directive */ 57 struct ap_directive_t *parent; member in struct:ap_directive_t 83 * @param parent The current parent node. If the added node is a first_child, 90 ap_directive_t *ap_add_node(ap_directive_t **parent, ap_directive_t *current,
|
H A D | scoreboard.h | 72 * created at config time in the parent are valid across children. However, 74 * arrays in the scoreboard never change between the parent and forked 129 /* stuff which the parent generally writes and the children rarely read */ 154 process_score *parent; member in struct:__anon41
|
H A D | http_config.h | 331 ap_directive_t *parent; member in struct:cmd_parms_struct 380 * @param base_conf The directory structure created for the parent directory. 395 * @param base_conf The directory structure created for the parent directory. 851 * @param curr_parent The current parent node
|
/httpd/modules/dav/fs/ |
H A D | mod_dav_fs.c | 57 dav_fs_server_conf *parent = base; local 64 child->lockdb_path ? child->lockdb_path : parent->lockdb_path;
|
/httpd/modules/dav/lock/ |
H A D | mod_dav_lock.c | 50 dav_lock_dir_conf *parent = base; local 57 child->lockdb_path ? child->lockdb_path : parent->lockdb_path;
|
/httpd/modules/metadata/ |
H A D | mod_version.c | 284 ap_directive_t *parent = NULL; local 289 ¤t, &parent, "<IfVersion");
|
/httpd/modules/cluster/ |
H A D | mod_heartbeat.c | 141 int parent, int singleton) 140 hb_watchdog_need(server_rec *s, const char *name, int parent, int singleton) argument
|
/httpd/modules/dav/main/ |
H A D | util_lock.c | 444 dav_resource *parent; local 474 &parent)) != NULL) { 478 resource = parent; 586 ** parent of resource to resource and below. 602 dav_resource *parent; local 604 &parent)) != NULL) { 608 if (parent == NULL) { 611 "Could not fetch parent resource. Unable to " 612 "inherit locks from the parent and apply " 615 which_resource = parent; [all...] |
H A D | util.c | 999 ** Don't issue this response if we're talking about the parent resource. 1002 ** UNLOCK method, the parent is checked only for locknull resources, 1003 ** and the parent certainly does not have the (locknull's) locktoken) 1486 ** The check of parent should be done when it is necessary to verify that 1487 ** the parent collection will accept a new member (ie current resource 1629 /* (2) Validate the parent resource if requested */ 1637 "Cannot access parent of repository root."); 1646 ** This error occurred on the parent resource. This implies that 1657 "A validation error has occurred on the parent resource, " 1914 /* check parent resourc 1916 dav_resource *parent; local [all...] |
H A D | mod_dav.c | 95 #define DAV_INHERIT_VALUE(parent, child, field) \ 96 ((child)->field ? (child)->field : (parent)->field) 173 dav_dir_conf *parent = base; local 180 newconf->provider_name = DAV_INHERIT_VALUE(parent, child, provider_name); 181 newconf->provider = DAV_INHERIT_VALUE(parent, child, provider); 182 if (parent->provider_name != NULL) { 189 parent->provider_name) != 0) { 192 "than its parent."); 196 newconf->locktimeout = DAV_INHERIT_VALUE(parent, child, locktimeout); 197 newconf->dir = DAV_INHERIT_VALUE(parent, chil 3028 dav_resource *parent; local [all...] |
/httpd/modules/loggers/ |
H A D | mod_log_debug.c | 170 const log_debug_dirconf *parent = parent_conf; local 173 if (parent->entries == NULL) 176 merged->entries = parent->entries; 179 merged->entries = apr_array_append(p, parent->entries, new->entries);
|
H A D | mod_log_forensic.c | 59 static void *merge_forensic_log_scfg(apr_pool_t *p, void *parent, void *new) argument 62 fcfg *pc = parent;
|
/httpd/modules/mappers/ |
H A D | mod_vhost_alias.c | 86 mva_sconf_t *parent = (mva_sconf_t *) parentv; local 92 conf->doc_root_mode = parent->doc_root_mode; 93 conf->doc_root = parent->doc_root; 100 conf->cgi_root_mode = parent->cgi_root_mode; 101 conf->cgi_root = parent->cgi_root;
|
/httpd/modules/core/ |
H A D | mod_watchdog.c | 28 #define AP_WATCHDOG_PVERSION "parent" 302 int parent, 307 const char *pver = parent ? AP_WATCHDOG_PVERSION : AP_WATCHDOG_CVERSION; 309 if (parent && mpm_is_forked != AP_MPMQ_NOT_SUPPORTED) { 324 w->singleton = parent ? 0 : singleton; 390 /* Create default watchdogs for parent and child */ 391 /* Parent watchdog executes inside parent process so it doesn't need the */ 411 /* Create parent process watchdog for 431 /* Create watchdog thread in parent and initializes Watchdog module */ 481 "Watchdog: Failed to create parent worke 300 ap_watchdog_get_instance(ap_watchdog_t **watchdog, const char *name, int parent, int singleton, apr_pool_t *p) argument [all...] |
/httpd/modules/filters/ |
H A D | mod_include.c | 97 struct parse_node *parent; member in struct:parse_node 231 (name)->parent = (name)->left = (name)->right = NULL; \ 254 if (d__c->parent != node) { \ 256 if (!d__c->parent) { \ 263 d__c->parent->token.s); \ 297 current = current->parent; 315 current = current->parent; 335 current = current->parent; 427 (name)->parent = (name)->left = (name)->right = NULL; \ 1237 new->parent 3817 request_rec *parent; local [all...] |