Searched refs:haystack (Results 1 - 5 of 5) sorted by relevance
/httpd/modules/ssl/ |
H A D | ssl_ct_util.h | 32 int ctutil_in_array(const char *needle, const apr_array_header_t *haystack);
|
H A D | ssl_ct_util.c | 94 int ctutil_in_array(const char *needle, const apr_array_header_t *haystack) argument 99 elts = (const char * const *)haystack->elts; 100 for (i = 0; i < haystack->nelts; i++) {
|
H A D | mod_ssl_ct.c | 622 static int uri_in_config(const char *needle, const apr_array_header_t *haystack) argument 627 elts = (ct_log_config **)haystack->elts; 628 for (i = 0; i < haystack->nelts; i++) {
|
/httpd/server/ |
H A D | util_expr_eval.c | 296 apr_array_header_t *haystack; local 300 haystack = (*func)(ctx, info->node_arg2, ap_expr_eval_word(ctx, arg)); 301 if (haystack == NULL) 303 for (; i < haystack->nelts; i++) { 304 if (strcmp(needle, APR_ARRAY_IDX(haystack,i,char *)) == 0)
|
/httpd/modules/lua/ |
H A D | lua_request.c | 322 static char* ap_lua_binstrstr (const char * haystack, size_t hsize, const char* needle, size_t nsize) argument 325 if (haystack == NULL) return NULL; 329 if (memcmp(haystack + p, needle, nsize) == 0) { 330 return (char*) (haystack + p);
|
Completed in 3503 milliseconds