Home
last modified time | relevance | path

Searched refs:tokenlen (Results 1 – 4 of 4) sorted by relevance

/reactos/drivers/network/tcpip/lwip/src/core/
H A Ddef.c108 size_t tokenlen = strlen(token); in lwip_strnstr() local
109 if (tokenlen == 0) { in lwip_strnstr()
112 for (p = buffer; *p && (p + tokenlen <= buffer + n); p++) { in lwip_strnstr()
113 if ((*p == *token) && (strncmp(p, token, tokenlen) == 0)) { in lwip_strnstr()
131 size_t tokenlen = strlen(token); in lwip_strnistr() local
132 if (tokenlen == 0) { in lwip_strnistr()
135 for (p = buffer; *p && (p + tokenlen <= buffer + n); p++) { in lwip_strnistr()
136 if (lwip_strnicmp(p, token, tokenlen) == 0) { in lwip_strnistr()
/reactos/modules/rosapps/applications/net/tsclient/rdesktop/
H A Dlicence.c210 uint16 tokenlen; in licence_parse_authreq() local
214 in_uint16_le(s, tokenlen); in licence_parse_authreq()
215 if (tokenlen != LICENCE_TOKEN_SIZE) in licence_parse_authreq()
217 error("token len %d\n", tokenlen); in licence_parse_authreq()
221 in_uint8p(s, *token, tokenlen); in licence_parse_authreq()
/reactos/base/applications/mstsc/
H A Dlicence.c234 uint16 tokenlen; in licence_parse_platform_challenge() local
238 in_uint16_le(s, tokenlen); in licence_parse_platform_challenge()
239 if (tokenlen != LICENCE_TOKEN_SIZE) in licence_parse_platform_challenge()
241 error("token len %d\n", tokenlen); in licence_parse_platform_challenge()
245 in_uint8p(s, *token, tokenlen); in licence_parse_platform_challenge()
/reactos/dll/directx/wine/d3d8/
H A Dvertexdeclaration.c81 size_t tokenlen = 1; in parse_token() local
126 tokenlen = (4 * count) + 1; in parse_token()
136 tokenlen = count + 1; in parse_token()
149 return tokenlen; in parse_token()