Searched defs:tok (Results 1 - 6 of 6) sorted by relevance

/httpd/test/
H A Dtest_find.c62 char tok[512]; local
71 while (gets(tok)) {
72 printf(" [%s] == %s\n", tok, ap_find_list_item(p, line, tok)
/httpd/modules/cache/
H A Dmod_socache_memcache.c91 char *tok; local
97 split = apr_strtok(cache_config, ",", &tok);
100 split = apr_strtok(NULL,",", &tok);
113 split = apr_strtok(cache_config, ",", &tok);
160 split = apr_strtok(NULL,",", &tok);
/httpd/modules/filters/
H A Dmod_filter.c336 char *tok = 0; local
365 for (arg = apr_strtok(apr_pstrdup(cmd->temp_pool, proto), sep, &tok);
366 arg; arg = apr_strtok(NULL, sep, &tok)) {
/httpd/modules/proxy/
H A Dmod_proxy_balancer.c938 char *tok, *val; local
946 key = apr_strtok(args, "&", &tok);
970 key = apr_strtok(NULL, "&", &tok);
/httpd/modules/mappers/
H A Dmod_negotiation.c613 char *tok; local
649 while ((tok = ap_get_list_item(neg->pool, &negotiate)) != NULL) {
651 if (strcmp(tok, "trans") == 0 ||
652 strcmp(tok, "vlist") == 0 ||
653 strcmp(tok, "guess-small") == 0 ||
654 apr_isdigit(tok[0]) ||
655 strcmp(tok, "*") == 0) {
666 if (strcmp(tok, "1.0") == 0) {
672 else if (tok[0] == '*') {
/httpd/server/
H A Dutil.c1304 const char *tok, ap_etag_e type)
1310 if (!line || !tok) {
1313 if (type == AP_ETAG_STRONG && *tok != '\"') {
1317 if (*tok == 'W' && (*(tok+1)) == '/' && (*(tok+2)) == '\"') {
1318 tok += 2;
1320 else if (*tok != '\"') {
1354 for (pos = (const unsigned char *)tok;
1432 const char *tok)
1303 find_list_item(apr_pool_t *p, const char *line, const char *tok, ap_etag_e type) argument
1431 ap_find_list_item(apr_pool_t *p, const char *line, const char *tok) argument
1440 ap_find_etag_strong(apr_pool_t *p, const char *line, const char *tok) argument
1449 ap_find_etag_weak(apr_pool_t *p, const char *line, const char *tok) argument
1589 ap_find_token(apr_pool_t *p, const char *line, const char *tok) argument
1624 ap_find_last_token(apr_pool_t *p, const char *line, const char *tok) argument
[all...]

Completed in 35 milliseconds