Home
last modified time | relevance | path

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

/external/curl/lib/
Dnetrc.c116 char *tok_buf; in Curl_parsenetrc() local
122 tok = strtok_r(netrcbuffer, " \t\n", &tok_buf); in Curl_parsenetrc()
196 tok = strtok_r(NULL, " \t\n", &tok_buf); in Curl_parsenetrc()
Dcookie.c691 char *tok_buf = NULL; in Curl_cookie_add() local
719 firstptr = strtok_r(lineptr, "\t", &tok_buf); /* tokenize it on the TAB */ in Curl_cookie_add()
724 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()
572 char *tok_buf = NULL; in Curl_auth_decode_digest_http_message() local
579 token = strtok_r(tmp, ",", &tok_buf); in Curl_auth_decode_digest_http_message()
587 token = strtok_r(NULL, ",", &tok_buf); in Curl_auth_decode_digest_http_message()
/external/curl/lib/vtls/
Ddarwinssl.c882 char *tok_buf; in GetDarwinVersionNumber() local
898 os_version_major = strtok_r(os_version, ".", &tok_buf); in GetDarwinVersionNumber()
899 os_version_minor = strtok_r(NULL, ".", &tok_buf); in GetDarwinVersionNumber()