Lines Matching refs:last
151 cache_provider_list *last = providers;
153 while (last->next) {
154 if (last->provider == provider) {
157 last = last->next;
159 if (last->provider == provider) {
162 last->next = newp;
905 char *cache_strqtok(char *str, const char *sep, char **last)
911 str = *last; /* start where we left off */
934 *last = token;
935 while (**last) {
937 if (**last == '\"' && !ap_strchr_c(sep, '\"')) {
939 ++*last;
941 else if (!ap_strchr_c(sep, **last)) {
942 ++*last;
949 if (**last == '\"') {
951 ++*last;
953 else if (**last == '\\') {
954 ++*last;
955 if (**last) {
956 ++*last;
960 ++*last;
965 if (**last) {
966 **last = '\0';
967 ++*last;
981 char *last;
995 const char *token = cache_strqtok(header, CACHE_SEPARATOR, &last);
1005 token = cache_strqtok(NULL, CACHE_SEPARATOR, &last);
1012 const char *token = cache_strqtok(header, CACHE_SEPARATOR, &last);
1126 token = cache_strqtok(NULL, CACHE_SEPARATOR, &last);
1141 char *last, *slast;
1146 char *token = cache_strqtok(header, CACHE_SEPARATOR, &last);
1185 token = cache_strqtok(NULL, CACHE_SEPARATOR, &last);