/httpd/os/win32/ |
H A D | os.h | 100 #define AP_DECLARE_LATE_DLL_FUNC(lib, rettype, calltype, fn, ord, args, names) \ 106 return (*(ap_winapi_pfn_##fn)) names; }; \
|
/httpd/server/ |
H A D | util_pcre.c | 28 * Neither the name of the University of Cambridge nor the names of its 278 apr_array_header_t *names, const char *prefix, 296 while (names->nelts <= capture) { 297 apr_array_push(names); 300 char *name = ((char **) names->elts)[capture] = 301 prefix ? apr_pstrcat(names->pool, prefix, offset + 2, 303 apr_pstrdup(names->pool, offset + 2); 309 ((const char **)names->elts)[capture] = offset + 2; 277 ap_regname(const ap_regex_t *preg, apr_array_header_t *names, const char *prefix, int upper) argument
|
H A D | vhost.c | 72 name_chain *names; /* if non-NULL then a list of name-vhosts member in struct:ipaddr_chain 75 * NVH'es names */ 114 * If that ipaddr_chain has names == NULL then you're done, it's an ip-vhost. 356 new->names = NULL; 450 if (ic->names == NULL) { 460 for (nc = ic->names; nc; nc = nc->next) { 470 if (nc->server->names) { 471 apr_array_header_t *names = nc->server->names; local 472 char **name = (char **)names 481 apr_array_header_t *names = nc->server->wild_names; local 904 apr_array_header_t *names; local [all...] |
H A D | mpm_common.c | 294 char **names; 296 for (names = g->gr_mem; *names != NULL; ++names) { 297 if (!strcmp(*names, name))
|
H A D | util_expr_eval.c | 1754 const char **names; member in struct:expr_provider_multi 1825 const char **name = prov->names;
|
H A D | config.c | 233 /* a list of the module symbol names with the trailing "_module"removed */ 774 * Initialise list of loaded modules and short names 2121 /* loop through the access names and find the first one */ 2204 s->names = apr_array_make(p, 4, sizeof(char **)); 2350 s->names = s->wild_names = NULL; 2583 /* Show the preloaded module names. Used for httpd -l. */
|
H A D | core.c | 2707 can now put multiple addresses/names on a single <VirtualHost> 2739 if (!cmd->server->names) { 2750 item = (char **)apr_array_push(cmd->server->names); 2850 "\" use ServerAlias to set multiple server names.", NULL); 4281 "A name or names alternately used to access the server"),
|
/httpd/include/ |
H A D | ap_regex.h | 32 * Neither the name of the University of Cambridge nor the names of its 172 * @param names The array to which the names will be added 173 * @param prefix An optional prefix to add to the returned names. AP_REG_MATCH 175 * @param upper If non zero, uppercase the names 178 apr_array_header_t *names, const char *prefix,
|
H A D | httpd.h | 1325 /** Normal names for ServerAlias servers */ 1326 apr_array_header_t *names; member in struct:server_rec 1327 /** Wildcarded names for ServerAlias servers */ 1835 * directory and file names 1842 * names that need to remain canonical, unless you are merging an apr_dir_read
|
/httpd/modules/ssl/ |
H A D | ssl_util_ssl.c | 265 STACK_OF(GENERAL_NAME) *names; 273 if ((names = X509_get_ext_d2i(x509, NID_subject_alt_name, NULL, NULL))) { 278 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { 279 name = sk_GENERAL_NAME_value(names, i); 309 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
|
H A D | ssl_engine_kernel.c | 1979 apr_array_header_t *names; local 1993 names = s->names; 1994 if (names) { 1995 char **name = (char **)names->elts; 1996 for (i = 0; i < names->nelts; ++i) { 2009 names = s->wild_names; 2010 if (names) { 2011 char **name = (char **)names->elts; 2012 for (i = 0; i < names [all...] |
/httpd/modules/generators/ |
H A D | mod_info.c | 718 apr_array_header_t *names; local 736 names = ap_list_provider_names(r->pool, group->provider_group, 738 qsort(names->elts, names->nelts, sizeof(ap_list_provider_names_t), 740 for (j = 0; j < names->nelts; j++) { 741 name = &APR_ARRAY_IDX(names, j, ap_list_provider_names_t);
|
/httpd/modules/metadata/ |
H A D | mod_mime_magic.c | 238 * includes for ASCII substring recognition formerly "names.h" in file 241 * Original notes: names and types used by ascmagic in file(1). These tokens are 272 "application/binary", /* "can't happen error on names.h/types", */ 276 static const struct names { struct 279 } names[] = { variable in typeref:struct:names 435 #define NNAMES ((sizeof(names)/sizeof(struct names)) - 1) 1978 const struct names *p; 2006 /* look for tokens from names.h - this is expensive!, so we'll limit 2015 for (p = names; [all...] |
/httpd/modules/core/ |
H A D | mod_macro.c | 62 apr_array_header_t *arguments; /* of char*, macro parameter names */ 257 "better prefix argument names with one of '%s'.", 270 "change argument names!", 275 /* warn about common prefix, but only if non empty names */ 497 char **names = (char **) macro->arguments->elts; local 525 macro->name, macro->location, names[i], i + 1);
|