Home
last modified time | relevance | path

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

/external/curl/lib/
Dnetrc.c81 char *tok_buf; in parsenetrc() local
87 tok = strtok_r(netrcbuffer, " \t\n", &tok_buf); in parsenetrc()
170 tok = strtok_r(NULL, " \t\n", &tok_buf); in parsenetrc()
Dcookie.c781 char *tok_buf = NULL; in Curl_cookie_add() local
809 firstptr = strtok_r(lineptr, "\t", &tok_buf); /* tokenize it on the TAB */ in Curl_cookie_add()
814 ptr = strtok_r(NULL, "\t", &tok_buf), fields++) { in Curl_cookie_add()
/external/curl/lib/vauth/
Ddigest.c219 char *tok_buf = NULL; in auth_digest_get_qop_values() local
230 token = strtok_r(tmp, ",", &tok_buf); in auth_digest_get_qop_values()
239 token = strtok_r(NULL, ",", &tok_buf); in auth_digest_get_qop_values()
573 char *tok_buf = NULL; in Curl_auth_decode_digest_http_message() local
580 token = strtok_r(tmp, ",", &tok_buf); in Curl_auth_decode_digest_http_message()
588 token = strtok_r(NULL, ",", &tok_buf); in Curl_auth_decode_digest_http_message()
/external/curl/lib/vtls/
Dsectransp.c888 char *tok_buf; in GetDarwinVersionNumber() local
904 os_version_major = strtok_r(os_version, ".", &tok_buf); in GetDarwinVersionNumber()
905 os_version_minor = strtok_r(NULL, ".", &tok_buf); in GetDarwinVersionNumber()