Lines Matching refs:next
542 This structure holds pointers (next, upper) to the current "file" which was
560 ap_configfile_t *next; /* next config once this one is processed */
565 Get next config if any.
570 if (ml->next) {
572 *(ml->upper) = ml->next;
579 returns next char if possible
590 if (ml->next && ml->next->getch && next_one(ml)) {
591 apr_status_t rc = ml->next->getch(ch, ml->next->param);
593 ml->next->line_number++;
617 char next = '\0';
622 while (i < bufsize - 1 && next != LF &&
623 ((rc = array_getch(&next, param)) == APR_SUCCESS)) {
624 buffer[i++] = next;
628 /* maybe update to next, possibly a recursion */
630 ap_assert(ml->next->getstr);
631 /* keep next line count in sync! the caller will update
632 the current line_number, we need to forward to the next */
633 ml->next->line_number++;
634 return ml->next->getstr(buf, bufsize, ml->next->param);
676 ls->next = cfg;