Searched refs:tok (Results 1 - 7 of 7) sorted by relevance
/httpd/test/ |
H A D | test_find.c | 62 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 D | mod_socache_memcache.c | 91 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/include/ |
H A D | httpd.h | 1557 * @param tok The token to search for 1560 AP_DECLARE(int) ap_find_list_item(apr_pool_t *p, const char *line, const char *tok); 1566 * @param tok The token to search for 1569 AP_DECLARE(int) ap_find_etag_weak(apr_pool_t *p, const char *line, const char *tok); 1575 * @param tok The token to search for 1578 AP_DECLARE(int) ap_find_etag_strong(apr_pool_t *p, const char *line, const char *tok); 1585 * @param tok The line to read tokens from 1593 AP_DECLARE(const char *) ap_parse_token_list_strict(apr_pool_t *p, const char *tok, 1613 * @param tok The token to find 1616 AP_DECLARE(int) ap_find_token(apr_pool_t *p, const char *line, const char *tok); [all...] |
/httpd/server/ |
H A D | util.c | 1304 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...] |
/httpd/modules/mappers/ |
H A D | mod_negotiation.c | 613 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/modules/filters/ |
H A D | mod_filter.c | 336 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 D | mod_proxy_balancer.c | 938 char *tok, *val; local 946 key = apr_strtok(args, "&", &tok); 970 key = apr_strtok(NULL, "&", &tok);
|
Completed in 532 milliseconds