Searched defs:array (Results 1 - 8 of 8) sorted by relevance
/httpd/os/unix/ |
H A D | unixd.c | 240 unsigned short *array; member in union:semun
|
/httpd/test/ |
H A D | time-sem.c | 216 ushort *array; member in union:semun
|
/httpd/modules/core/ |
H A D | mod_macro.c | 92 return configuration-parsed arguments from line as an array. 131 get read lines as an array till end_token. 293 warn about empty strings in array. could be legitimate. 296 const apr_array_header_t * array) 298 char **tab = (char **) array->elts; 300 for (i = 0; i < array->nelts; i++) { 450 return the result as a newly allocated array, if result is defined. 480 /* append substituted line to result array */ 559 apr_array_header_t *contents; /* array of char * */ 646 close the array strea 295 check_macro_use_arguments(const char *where, const apr_array_header_t * array) argument [all...] |
/httpd/modules/ssl/ |
H A D | ssl_engine_vars.c | 686 /* return the first entry from this 1-element array */ 1083 apr_array_header_t *array = NULL; local 1111 /* Create an array large enough to accomodate every extension. This is 1114 array = apr_array_make(p, count, sizeof(char *)); 1122 * value and add it to the array we're building. 1131 char **ptr = apr_array_push(array); 1143 if (array->nelts == 0) 1144 array = NULL; 1153 return array;
|
H A D | ssl_engine_kernel.c | 2166 static int ssl_array_index(apr_array_header_t *array, argument 2170 for (i = 0; i < array->nelts; i++) { 2171 const char *p = APR_ARRAY_IDX(array, i, const char*); 2372 * anything to the protos array, or because all strings added to the array
|
/httpd/modules/loggers/ |
H A D | mod_log_config.c | 222 * an array of the logs we are going to use, each of type config_log_state. 230 * points to the same array as config_logs in the main server, and 231 * config_logs points to the array of logs defined inside this vhost, 1537 /* First init the buffered logs array, which is needed when opening the logs. */ 1565 buffered_log **array = (buffered_log **)all_buffered_logs->elts; local 1570 buffered_log *this = array[i];
|
/httpd/modules/proxy/ |
H A D | proxy_util.c | 3275 apr_array_header_t *array; member in struct:header_connection 3283 x->error = ap_parse_token_list_strict(x->pool, val, &x->array, !x->is_req); 3298 x.array = NULL; 3313 if (x.array) { 3315 for (i = 0; i < x.array->nelts; i++) { 3316 const char *name = APR_ARRAY_IDX(x.array, i, const char *);
|
/httpd/server/ |
H A D | config.c | 1697 * and an apr_array_header_t pointer for the string array. 1700 apr_array_header_t *array; member in struct:__anon357 1705 /* arr_elts_getstr() returns the next line from the string array. */ 1711 /* End of array reached? */ 1712 if (++arr_param->curr_idx > arr_param->array->nelts) 1716 elt = ((char **)arr_param->array->elts)[arr_param->curr_idx - 1]; 1728 arr_param->curr_idx = arr_param->array->nelts; 1744 arr_parms.array = arr;
|
Completed in 1448 milliseconds