Lines Matching refs:startp
1680 ng_parse_get_token(const char *s, int *startp, int *lenp) in ng_parse_get_token() argument
1685 while (isspace(s[*startp])) in ng_parse_get_token()
1686 (*startp)++; in ng_parse_get_token()
1687 switch (s[*startp]) { in ng_parse_get_token()
1707 if ((t = ng_get_string_token(s, startp, lenp, NULL)) == NULL) in ng_parse_get_token()
1712 for (i = *startp + 1; s[i] != '\0' && !isspace(s[i]) in ng_parse_get_token()
1716 *lenp = i - *startp; in ng_parse_get_token()
1726 ng_get_string_token(const char *s, int *startp, int *lenp, int *slenp) in ng_get_string_token() argument
1732 while (isspace(s[*startp])) in ng_get_string_token()
1733 (*startp)++; in ng_get_string_token()
1734 start = *startp; in ng_get_string_token()
1735 if (s[*startp] != '"') in ng_get_string_token()