HomeSort by relevance Sort by last modified time
    Searched refs:host_len (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/url/
url_canon_host.cc 116 int host_len,
122 for (int i = 0; i < host_len; ++i) {
127 if (!DecodeEscaped(host, &i, host_len,
197 bool DoComplexHost(const char* host, int host_len,
213 if (!DoSimpleHost(host, host_len, output, &has_non_ascii)) {
234 utf8_source_len = host_len;
260 bool DoComplexHost(const base::char16* host, int host_len,
272 if (!ConvertUTF16ToUTF8(host, host_len, &utf8)) {
273 AppendInvalidNarrowString(host, 0, host_len, output);
287 return DoIDNHost(host, host_len, output)
    [all...]
url_parse_file.cc 59 int host_len = spec_len - after_slashes; local
60 if (host_len)
61 parsed->host = Component(after_slashes, host_len);
85 int host_len = next_slash - after_slashes; local
86 if (host_len)
gurl.cc 492 int host_len = parsed_.host.len; local
495 host_len--;
499 if (host_len < domain_len)
504 host_len - domain_len;
515 if ('.' != lower_ascii_domain[0] && host_len > domain_len &&
url_canon_unittest.cc 497 int host_len = static_cast<int>(strlen(host_cases[i].input8)); local
498 Component in_comp(0, host_len);
521 int host_len = static_cast<int>(input16.length()); local
522 Component in_comp(0, host_len);
544 int host_len = static_cast<int>(strlen(host_cases[i].input8)); local
545 Component in_comp(0, host_len);
571 int host_len = static_cast<int>(input16.length()); local
572 Component in_comp(0, host_len);
    [all...]
  /external/iproute2/ip/
iprule.c 51 int host_len = -1; local
67 host_len = 32;
69 host_len = 128;
71 host_len = 16;
73 host_len = 80;
87 if (r->rtm_src_len != host_len) {
108 if (r->rtm_dst_len != host_len) {
iproute.c 127 int filter_nlmsg(struct nlmsghdr *n, struct rtattr **tb, int host_len)
202 memcpy(&via.data, RTA_DATA(tb[RTA_GATEWAY]), host_len/8);
208 memcpy(&prefsrc.data, RTA_DATA(tb[RTA_PREFSRC]), host_len/8);
287 int host_len = -1; local
305 host_len = calc_host_len(r);
310 if (!filter_nlmsg(n, tb, host_len))
336 if (r->rtm_dst_len != host_len) {
356 if (r->rtm_src_len != host_len) {
378 if (tb[RTA_GATEWAY] && filter.rvia.bitlen != host_len) {
396 if (tb[RTA_PREFSRC] && filter.rprefsrc.bitlen != host_len) {
1076 int host_len = -1; local
    [all...]
  /external/chromium_org/net/http/
http_auth_handler_ntlm_portable.cc 476 uint32 domain_len, user_len, host_len; local
526 host_len = ucs_host_buf.length() * 2;
533 host_len = hostname.length();
539 *out_len = NTLM_TYPE3_HEADER_LEN + host_len + domain_len + user_len +
594 offset = NTLM_TYPE3_HEADER_LEN + domain_len + user_len + host_len;
615 cursor = WriteSecBuf(cursor, host_len, offset);
616 memcpy(static_cast<uint8*>(*out_buf) + offset, host_ptr, host_len);
  /external/wpa_supplicant_8/src/wps/
wps_upnp.c 318 size_t host_len, path_len; local
375 host_len = os_strlen(host);
377 alloc_len = host_len + 1 + 1 + path_len + 1;
394 os_memcpy(mem, host, host_len);
395 mem += host_len + 1;
    [all...]
  /external/chromium_org/net/spdy/
spdy_framer.h 115 host_len = 0;
128 uint8 host_len; member in struct:net::SpdyAltSvcScratch
    [all...]
spdy_framer.cc 343 // + 1 (pid_len) + 1 (host_len).
    [all...]

Completed in 427 milliseconds