Searched refs:host_end (Results 1 - 8 of 8) sorted by relevance
/third_party/openssl/crypto/http/ |
H A D | http_lib.c | 46 const char *host, *host_end; in OSSL_parse_url() local 89 host_end = strchr(host + 1, ']'); in OSSL_parse_url() 90 if (host_end == NULL) in OSSL_parse_url() 92 p = ++host_end; in OSSL_parse_url() 95 host_end = strchr(host, ':'); in OSSL_parse_url() 96 if (host_end == NULL) in OSSL_parse_url() 97 host_end = strchr(host, '/'); in OSSL_parse_url() 98 if (host_end == NULL) in OSSL_parse_url() 99 host_end = strchr(host, '?'); in OSSL_parse_url() 100 if (host_end in OSSL_parse_url() [all...] |
/third_party/node/deps/openssl/openssl/crypto/http/ |
H A D | http_lib.c | 53 const char *host, *host_end; in OSSL_parse_url() local 97 host_end = strchr(host + 1, ']'); in OSSL_parse_url() 98 if (host_end == NULL) in OSSL_parse_url() 100 p = ++host_end; in OSSL_parse_url() 103 host_end = strchr(host, ':'); in OSSL_parse_url() 104 if (host_end == NULL) in OSSL_parse_url() 105 host_end = strchr(host, '/'); in OSSL_parse_url() 106 if (host_end == NULL) in OSSL_parse_url() 107 host_end = strchr(host, '?'); in OSSL_parse_url() 108 if (host_end in OSSL_parse_url() [all...] |
/third_party/curl/lib/ |
H A D | hostip.c | 1109 char *host_end; in Curl_loadhostpairs() local 1122 host_end = strchr(&hostp->data[1], ':'); in Curl_loadhostpairs() 1124 if(host_end) { in Curl_loadhostpairs() 1125 hlen = host_end - &hostp->data[1]; in Curl_loadhostpairs() 1126 num = strtoul(++host_end, NULL, 10); in Curl_loadhostpairs() 1128 host_end = NULL; in Curl_loadhostpairs() 1130 if(!host_end) { in Curl_loadhostpairs() 1170 host_end = strchr(host_begin, ':'); in Curl_loadhostpairs() 1171 if(!host_end) in Curl_loadhostpairs() 1173 hlen = host_end in Curl_loadhostpairs() [all...] |
/third_party/node/deps/ada/ |
H A D | ada.h | 1288 * | | | `----------------------- host_end 1300 uint32_t host_end{0}; 4788 * | | | `----------------------- host_end 5320 * | | | `----------------------- host_end 5555 out.host_end = uint32_t(out.host_start + host.value().size()); 5560 out.host_end = uint32_t(out.host_start + host.value().size()) - 1; 5563 running_index = out.host_end + 1; 5568 out.host_end = out.host_start; 5825 components.host_end += diff; in update_base_authority() 5890 replace_and_resize(components.host_start, components.host_end, inpu in update_base_hostname() [all...] |
H A D | ada.cpp | 13062 * | | | `----------------------- host_end 13147 answer.append("\t\"host_end\":\""); 13148 helpers::encode_json(std::to_string(host_end), back); 13211 components.host_start == components.host_end) { 13254 components.host_start == components.host_end) { 13295 components.host_end += new_difference; 13329 components.host_end += new_difference; 13361 components.host_end += new_difference; 13525 if (components.host_start == components.host_end && !has_authority()) { 13764 components.host_end) [all...] |
H A D | ada_c.h | 32 uint32_t host_end; member
|
/third_party/node/lib/internal/ |
H A D | url.js | 189 host_end = 0; 722 3: host_end, 733 ctx.host_end = host_end; 867 // If we have an empty host, then the space between components.host_end and 869 if (startsAt === ctx.host_end) { 893 return StringPrototypeSlice(ctx.href, startsAt, ctx.host_end);
|
/third_party/node/src/ |
H A D | node_url.cc | 329 url_components_buffer_[3] = components.host_end; in UpdateComponents()
|
Completed in 33 milliseconds