Lines Matching defs:token
72 int valid; /* token that indicates a valid netpath_vars */
199 /* couldn't find this token in the database; go to next one. */
239 * Returns pointer to the rest-of-the-string after the current token.
240 * The token itself starts at arg, and we null terminate it. We return NULL
241 * if either the arg is empty, or if this is the last token.
247 int token /* char to parse string for */
256 if ((cp = strchr(npp, token)) == NULL)
259 * did find a token, but it might be escaped.
264 * next token
267 /* shift r-o-s onto the escaped token */
273 return (_get_next_token(cp, token));
277 *cp++ = '\0'; /* null-terminate token */