Lines Matching refs:startp
1683 ng_parse_get_token(const char *s, int *startp, int *lenp) in ng_parse_get_token() argument
1688 while (isspace(s[*startp])) in ng_parse_get_token()
1689 (*startp)++; in ng_parse_get_token()
1690 switch (s[*startp]) { in ng_parse_get_token()
1710 if ((t = ng_get_string_token(s, startp, lenp, NULL)) == NULL) in ng_parse_get_token()
1715 for (i = *startp + 1; s[i] != '\0' && !isspace(s[i]) in ng_parse_get_token()
1719 *lenp = i - *startp; in ng_parse_get_token()
1729 ng_get_string_token(const char *s, int *startp, int *lenp, int *slenp) in ng_get_string_token() argument
1735 while (isspace(s[*startp])) in ng_get_string_token()
1736 (*startp)++; in ng_get_string_token()
1737 start = *startp; in ng_get_string_token()
1738 if (s[*startp] != '"') in ng_get_string_token()