/external/chromium_org/url/ |
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/chromium_org/net/spdy/ |
spdy_framer.h | 115 host_len = 0; 128 uint8 host_len; member in struct:net::SpdyAltSvcScratch [all...] |