Lines Matching refs:token
27 * Find beginning of token (skip over leading delimiters).
28 * Note that there is no token if this loop sets string to point to the terminal null.
32 wchar_t *token = strToken;
33 while (*token != L'\0') {
34 if (SecIsInDelimitW(*token, strDelimit) != 0) {
35 ++token;
41 return token;
45 * Find the end of the token. If it is not the end of the string, put a null there.
49 wchar_t *token = strToken;
50 while (*token != L'\0') {
51 if (SecIsInDelimitW(*token, strDelimit) != 0) {
53 *token = L'\0';
54 ++token;
57 ++token;
59 return token;
69 /* Determine if a token has been found */
85 * strToken String containing token or tokens.