Home
last modified time | relevance | path

Searched refs:host_end (Results 1 – 8 of 8) sorted by relevance

/third_party/openssl/crypto/http/
Dhttp_lib.c46 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 == NULL) in OSSL_parse_url()
[all …]
/third_party/node/deps/openssl/openssl/crypto/http/
Dhttp_lib.c53 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 == NULL) in OSSL_parse_url()
[all …]
/third_party/curl/lib/
Dhostip.c1109 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 - host_begin; in Curl_loadhostpairs()
[all …]
/third_party/node/deps/ada/
Dada.h1300 uint32_t host_end{0};
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;
5890 replace_and_resize(components.host_start, components.host_end, input);
5896 components.host_end += new_difference;
6112 components.host_end += diff;
6145 components.host_start != components.host_end) {
[all …]
Dada.cpp13148 helpers::encode_json(std::to_string(host_end), back); in to_string()
13211 components.host_start == components.host_end) { in parse_scheme_with_colon()
13254 components.host_start == components.host_end) { in parse_scheme_with_colon()
13295 components.host_end += new_difference; in copy_scheme()
13329 components.host_end += new_difference; in set_scheme_from_view_with_colon()
13361 components.host_end += new_difference; in set_scheme()
13525 if (components.host_start == components.host_end && !has_authority()) { in parse_path()
13764 components.host_end) == "localhost") { in set_host_or_hostname()
13836 return helpers::substring(buffer, components.host_end + 1, in get_port()
13859 if (components.host_end > components.host_start && in get_host()
[all …]
Dada_c.h32 uint32_t host_end; member
/third_party/node/lib/internal/
Durl.js189 host_end = 0; field in URLContext
722 3: host_end,
733 ctx.host_end = host_end;
869 if (startsAt === ctx.host_end) {
893 return StringPrototypeSlice(ctx.href, startsAt, ctx.host_end);
/third_party/node/src/
Dnode_url.cc329 url_components_buffer_[3] = components.host_end; in UpdateComponents()