Searched defs:array (Results 1 - 8 of 8) sorted by relevance

/httpd/os/unix/
H A Dunixd.c240 unsigned short *array; member in union:semun
/httpd/test/
H A Dtime-sem.c216 ushort *array; member in union:semun
/httpd/modules/core/
H A Dmod_macro.c92 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 Dssl_engine_vars.c686 /* 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 Dssl_engine_kernel.c2166 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 Dmod_log_config.c222 * 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 Dproxy_util.c3275 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 Dconfig.c1697 * 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 250 milliseconds