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

  /external/chromium/googleurl/src/
url_parse_file.cc 84 int host_len = spec_len - after_slashes; local
85 if (host_len)
86 parsed->host = Component(after_slashes, host_len);
110 int host_len = next_slash - after_slashes; local
111 if (host_len)
gurl.cc 422 int host_len = parsed_.host.len; local
425 host_len--;
429 if (host_len < domain_len)
434 host_len - domain_len;
445 if ('.' != lower_ascii_domain[0] && host_len > domain_len &&
url_canon_unittest.cc 449 int host_len = static_cast<int>(strlen(host_cases[i].input8)); local
450 url_parse::Component in_comp(0, host_len);
470 int host_len = static_cast<int>(input16.length()); local
471 url_parse::Component in_comp(0, host_len);
493 int host_len = static_cast<int>(strlen(host_cases[i].input8)); local
494 url_parse::Component in_comp(0, host_len);
518 int host_len = static_cast<int>(input16.length()); local
519 url_parse::Component in_comp(0, host_len);
    [all...]
  /external/iproute2/ip/
ipaddrlabel.c 62 int host_len = -1; local
76 host_len = 32;
78 host_len = 128;
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 129 int host_len = -1; local
149 host_len = 128;
151 host_len = 32;
153 host_len = 16;
155 host_len = 80;
223 memcpy(&via.data, RTA_DATA(tb[RTA_GATEWAY]), host_len/8);
229 memcpy(&prefsrc.data, RTA_DATA(tb[RTA_PREFSRC]), host_len/8);
300 if (r->rtm_dst_len != host_len) {
320 if (r->rtm_src_len != host_len) {
342 if (tb[RTA_GATEWAY] && filter.rvia.bitlen != host_len) {
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_upnp.c 316 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/net/http/
http_auth_handler_ntlm_portable.cc 486 uint32 domain_len, user_len, host_len; local
535 host_len = ucs_host_buf.length() * 2;
542 host_len = hostname.length();
548 *out_len = NTLM_TYPE3_HEADER_LEN + host_len + domain_len + user_len +
603 offset = NTLM_TYPE3_HEADER_LEN + domain_len + user_len + host_len;
624 cursor = WriteSecBuf(cursor, host_len, offset);
625 memcpy(static_cast<uint8*>(*out_buf) + offset, host_ptr, host_len);

Completed in 651 milliseconds