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

  /external/chromium/googleurl/src/
url_canon_host.cc 139 int host_len,
145 for (int i = 0; i < host_len; ++i) {
150 if (!DecodeEscaped(host, &i, host_len,
220 bool DoComplexHost(const char* host, int host_len,
236 if (!DoSimpleHost(host, host_len, output, &has_non_ascii)) {
257 utf8_source_len = host_len;
283 bool DoComplexHost(const char16* host, int host_len,
295 if (!ConvertUTF16ToUTF8(host, host_len, &utf8)) {
296 AppendInvalidNarrowString(host, 0, host_len, output);
310 return DoIDNHost(host, host_len, output)
    [all...]
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/
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) {
ipaddrlabel.c 62 int host_len = -1; local
76 host_len = 32;
78 host_len = 128;
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/chromium/net/http/
http_auth_handler_ntlm_portable.cc 482 uint32 domain_len, user_len, host_len; local
531 host_len = ucs_host_buf.length() * 2;
538 host_len = hostname.length();
544 *out_len = NTLM_TYPE3_HEADER_LEN + host_len + domain_len + user_len +
599 offset = NTLM_TYPE3_HEADER_LEN + domain_len + user_len + host_len;
620 cursor = WriteSecBuf(cursor, host_len, offset);
621 memcpy(static_cast<uint8*>(*out_buf) + offset, host_ptr, host_len);
  /external/chromium/net/base/
net_util.h 209 size_t host_len,
214 size_t host_len,
net_util.cc     [all...]

Completed in 313 milliseconds