Lines Matching defs:token
341 char *token = apr_pstrdup(r->pool, value);
347 token = apr_strtok(token, ", \t", &last);
348 while (token) {
351 if (!ap_strcasecmp_match(token,
357 token = apr_strtok(NULL, ", \t", &last);
545 const char *token = apr_strtok(header, ", ", &last);
546 while (token) {
548 if (!strcmp(token, "no-cache")) {
552 else if (!strcasecmp(token, "no-cache")) {
555 token = apr_strtok(NULL, ", ", &last);
561 const char *token = apr_strtok(header, ", ", &last);
562 while (token) {
563 switch (token[0]) {
567 if (!strcmp(token, "no-cache")) {
570 else if (!strcmp(token, "no-store")) {
574 else if (!strncasecmp(token, "no-cache", 8)) {
575 if (token[8] == '=') {
577 else if (!token[8]) {
582 else if (!strcasecmp(token, "no-store")) {
590 if (!strcmp(token, "private")) {
594 else if (!strncasecmp(token, "private", 7)) {
595 if (token[7] == '=') {
597 else if (!token[7]) {
605 token = apr_strtok(NULL, ", ", &last);
660 const char *token = apr_strtok(header, ", ", &last);
661 while (token) {
662 switch (token[0]) {
666 if (!strncmp(token, "max-age", 7)) {
668 max_age_value = apr_atoi64(token + 8);
671 else if (!strncasecmp(token, "max-age", 7)) {
672 if (token[7] == '=') {
674 max_age_value = apr_atoi64(token + 8);
682 if (!strncmp(token, "s-maxage", 8)) {
683 if (token[8] == '=') {
685 s_maxage_value = apr_atoi64(token + 9);
689 else if (!strncasecmp(token, "s-maxage", 8)) {
690 if (token[8] == '=') {
692 s_maxage_value = apr_atoi64(token + 9);
699 token = apr_strtok(NULL, ", ", &last);