Searched refs:Curl_raw_nequal (Results 1 – 10 of 10) sorted by relevance
/external/curl/lib/ |
D | dict.c | 148 if(Curl_raw_nequal(path, DICT_MATCH, sizeof(DICT_MATCH)-1) || in dict_do() 149 Curl_raw_nequal(path, DICT_MATCH2, sizeof(DICT_MATCH2)-1) || in dict_do() 150 Curl_raw_nequal(path, DICT_MATCH3, sizeof(DICT_MATCH3)-1)) { in dict_do() 206 else if(Curl_raw_nequal(path, DICT_DEFINE, sizeof(DICT_DEFINE)-1) || in dict_do() 207 Curl_raw_nequal(path, DICT_DEFINE2, sizeof(DICT_DEFINE2)-1) || in dict_do() 208 Curl_raw_nequal(path, DICT_DEFINE3, sizeof(DICT_DEFINE3)-1)) { in dict_do()
|
D | hostcheck.c | 97 Curl_raw_nequal(pattern, "xn--", 4)) { in hostmatch() 117 return Curl_raw_nequal(pattern, hostname, prefixlen) && in hostmatch() 118 Curl_raw_nequal(pattern_wildcard+1, hostname_label_end - suffixlen, in hostmatch()
|
D | rawstr.h | 36 int Curl_raw_nequal(const char *first, const char *second, size_t max); 42 #define checkprefix(a,b) Curl_raw_nequal(a,b,strlen(a))
|
D | rawstr.c | 119 int Curl_raw_nequal(const char *first, const char *second, size_t max) in Curl_raw_nequal() function
|
D | pipeline.c | 272 if(Curl_raw_nequal(bl_server_name, server_name, in Curl_pipeline_server_blacklisted()
|
D | http2.c | 1664 if(hlen == 10 && Curl_raw_nequal("connection", hdbuf, 10)) { in http2_send() 1669 else if(hlen == 4 && Curl_raw_nequal("host", hdbuf, 4)) { in http2_send() 1694 Curl_raw_nequal("content-length", (char*)nva[i].name, 14)) { in http2_send()
|
D | http.c | 185 if(Curl_raw_nequal(head->data, thisheader, thislen)) in Curl_checkheaders() 211 if(Curl_raw_nequal(head->data, thisheader, thislen)) in Curl_checkProxyheaders() 1299 if(!Curl_raw_nequal(headerline, header, hlen)) in Curl_compareheader() 1325 if(Curl_raw_nequal(start, content, clen)) in Curl_compareheader()
|
D | imap.c | 274 if(line + cmd_len <= end && Curl_raw_nequal(line, cmd, cmd_len) && in imap_matchresp()
|
D | url.c | 4572 if(Curl_raw_nequal(no_proxy + tok_start, checkn, in check_noproxy()
|
/external/curl/src/ |
D | tool_metalink.c | 909 return Curl_raw_nequal(ptr, media_type, media_type_len) && in check_content_type()
|