/httpd/server/ |
H A D | provider.c | 136 ap_list_provider_names_t *entry; local 161 entry = apr_array_push(ret); 162 entry->provider_name = apr_pstrdup(pool, val); 170 ap_list_provider_groups_t *entry; local 191 entry = apr_array_push(ret); 192 entry->provider_group = group; 193 entry->provider_version = version;
|
H A D | core.c | 557 /* Add per-directory configuration entry (for <directory> section); 1254 /* prepare next entry */ 1571 /* The entry should be ignored if it is a full URL for a 401 error */ 3205 conn_log_config *entry; local 3212 entry = apr_pcalloc(cmd->pool, sizeof(conn_log_config)); 3215 sconf->conn_log_level = apr_array_make(cmd->pool, 4, sizeof(entry)); 3216 APR_ARRAY_PUSH(sconf->conn_log_level, conn_log_config *) = entry; 3224 ret = apr_ipsubnet_create(&entry->subnet, addr, mask, cmd->pool); 3229 if ((err = update_loglevel(cmd, &entry->log, argv[i])) != NULL)
|
/httpd/modules/dav/main/ |
H A D | std_liveprop.c | 77 ap_list_provider_names_t *entry = local 80 for (i = 0; i < extensions->nelts; i++, entry++) { 82 dav_get_resource_type_providers(entry->provider_name);
|
H A D | mod_dav.c | 1616 ap_list_provider_names_t *entry; local 1648 entry = (ap_list_provider_names_t *)extensions->elts; 1650 for (i = 0; i < extensions->nelts; i++, entry++) { 1652 dav_get_options_providers(entry->provider_name); 1808 entry = (ap_list_provider_names_t *)extensions->elts; 1810 for (i = 0; i < extensions->nelts; i++, entry++) { 1812 dav_get_options_providers(entry->provider_name);
|
/httpd/modules/loggers/ |
H A D | mod_log_debug.c | 64 msg_entry *entry = APR_ARRAY_IDX(dconf->entries, i, msg_entry *); local 65 if (entry->hook != allhooks && entry->hook != hookname) 67 if (entry->condition) { 68 int ret = ap_expr_exec(r, entry->condition, &err); 77 msg = ap_expr_str_exec(r, entry->msg_expr, &err); 83 msg, hookname, entry->msg_expr->filename, 84 entry->msg_expr->line_number); 187 msg_entry *entry = apr_pcalloc(cmd->pool, sizeof(msg_entry)); local 195 entry [all...] |
/httpd/modules/lua/ |
H A D | lua_dbd.c | 233 const char *entry, *rowname; local 254 entry = apr_dbd_get_entry(res->driver, row, x); 255 if (entry) { 264 lua_pushstring(L, entry); 281 entry = apr_dbd_get_entry(res->driver, row, x); 282 if (entry) { 291 lua_pushstring(L, entry);
|
/httpd/modules/generators/ |
H A D | mod_info.c | 414 info_entry *entry = (info_entry *) conf->more_info->elts; local 420 if (!strcmp(module_name, entry->name)) { 421 return entry->info; 423 entry++; 760 module *modp, **entry; local 762 entry = &APR_ARRAY_PUSH(arr, module *); 763 *entry = modp;
|
/httpd/modules/aaa/ |
H A D | mod_auth_digest.c | 116 unsigned long key; /* the key for this entry */ 117 struct hash_entry *next; /* next entry in the bucket */ 372 * such as only allocating the smallest necessary entry for each 690 * simple semi-LRU is used for this: whenever a client entry is accessed 693 * collecter then just removes the oldest entry (i.e. the one at the 718 * Get the client given its client number (the key). Returns the entry, 722 * to the entry returned by get_client() is NOT synchronized. This means 733 client_entry *entry, *prev = NULL; local 739 entry = client_list->table[bucket]; 743 while (entry 775 client_entry *entry, *prev; local 816 client_entry *entry; local 1098 client_entry new_entry = { 0, NULL, 0, "" }, *entry; local [all...] |
/httpd/modules/ldap/ |
H A D | util_ldap.c | 334 "LDAP: Unable to add rebind cross reference entry. Out of memory?"); 336 ldc->reason = "LDAP: Unable to add rebind cross reference entry."; 821 * Add the new connection entry to the linked list. Note that we 904 LDAPMessage *res, *entry; local 911 /* get cache entry (or create one) */ 1000 entry = ldap_first_entry(ldc->ldap, res); 1001 searchdn = ldap_get_dn(ldc->ldap, entry); 1057 /* get cache entry (or create one) */ 1216 LDAPMessage *sga_res, *entry; local 1278 entry 1641 LDAPMessage *res, *entry; local 1917 LDAPMessage *res, *entry; local [all...] |
/httpd/modules/mappers/ |
H A D | mod_rewrite.c | 2257 static char *do_expand(char *input, rewrite_ctx *ctx, rewriterule_entry *entry) argument 2285 /* prepare next entry */ 2369 key = lookup_map(ctx->r, map, do_expand(key, ctx, entry)); 2372 key = do_expand(dflt, ctx, entry); 2396 if (entry && (entry->flags & RULEFLAG_ESCAPEBACKREF)) { 2400 tmp2 = escape_backref(pool, tmp, entry->escapes, entry->flags & RULEFLAG_ESCAPENOPLUS); 3294 /* make a new entry in the internal temporary rewrite rule list */ 3720 /* make a new entry i [all...] |