Lines Matching refs:strend
604 char *str = *line, *strend, *res, quote; in php_ap_getword_conf() local
623 strend = str + 1; in php_ap_getword_conf()
625 while (*strend && *strend != quote) { in php_ap_getword_conf()
626 if (*strend == '\\' && strend[1] && strend[1] == quote) { in php_ap_getword_conf()
627 strend += 2; in php_ap_getword_conf()
629 ++strend; in php_ap_getword_conf()
632 if (*strend && *strend == quote) { in php_ap_getword_conf()
633 char p = *(strend + 1); in php_ap_getword_conf()
635 strend++; in php_ap_getword_conf()
640 res = substring_conf(str + 1, strend - str - 1, quote TSRMLS_CC); in php_ap_getword_conf()
642 if (*strend == quote) { in php_ap_getword_conf()
643 ++strend; in php_ap_getword_conf()
648 strend = str; in php_ap_getword_conf()
649 while (*strend && !isspace(*strend)) { in php_ap_getword_conf()
650 ++strend; in php_ap_getword_conf()
652 res = substring_conf(str, strend - str, 0 TSRMLS_CC); in php_ap_getword_conf()
655 while (*strend && isspace(*strend)) { in php_ap_getword_conf()
656 ++strend; in php_ap_getword_conf()
659 *line = strend; in php_ap_getword_conf()