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

  /external/chromium/net/http/
http_alternate_protocols.cc 25 case HttpAlternateProtocols::BROKEN:
26 return "Broken";
86 if (alternate_protocol == BROKEN) {
98 if (existing_alternate.protocol == BROKEN) {
99 DVLOG(1) << "Ignore alternate protocol since it's known to be broken.";
103 if (alternate_protocol != BROKEN && !existing_alternate.Equals(alternate)) {
119 protocol_map_[http_host_port_pair].protocol = BROKEN;
http_stream_factory.cc 58 HttpAlternateProtocols::Protocol protocol = HttpAlternateProtocols::BROKEN;
66 if (protocol == HttpAlternateProtocols::BROKEN) {
80 // If we think the alternate protocol is broken, don't change it.
81 if (existing_alternate.protocol == HttpAlternateProtocols::BROKEN)
http_alternate_protocols_unittest.cc 36 EXPECT_EQ(HttpAlternateProtocols::BROKEN, alternate.protocol);
43 EXPECT_EQ(HttpAlternateProtocols::BROKEN, alternate.protocol)
http_alternate_protocols.h 28 BROKEN, // The alternate protocol is known to be broken.
62 // has already been marked broken via MarkBrokenAlternateProtocolFor().
67 // Marks the alternate protocol as broken. Once marked broken, any further
http_stream_factory_impl.cc 137 if (alternate.protocol == HttpAlternateProtocols::BROKEN)
http_network_transaction_unittest.cc     [all...]
  /external/chromium_org/sandbox/win/tools/finder/
finder_fs.cc 19 filesystem_stats_[BROKEN]++;
43 filesystem_stats_[BROKEN]++;
72 filesystem_stats_[BROKEN]++;
92 filesystem_stats_[BROKEN]++;
112 filesystem_stats_[BROKEN]++;
finder_registry.cc 28 registry_stats_[BROKEN]++;
37 registry_stats_[BROKEN]++;
62 registry_stats_[BROKEN]++;
75 registry_stats_[BROKEN]++;
88 registry_stats_[BROKEN]++;
finder_kernel.cc 156 kernel_object_stats_[BROKEN]++;
186 kernel_object_stats_[BROKEN]++;
200 kernel_object_stats_[BROKEN]++;
214 kernel_object_stats_[BROKEN]++;
finder.h 17 BROKEN, // Number of errors while parsing the objects
  /external/chromium/googleurl/src/
url_canon_unittest.cc 399 {"\xef\xb7\x90zyx.com", L"\xfdd0zyx.com", "%EF%BF%BDzyx.com", url_parse::Component(0, 16), CanonHostInfo::BROKEN, -1},
401 {"%ef%b7%90zyx.com", L"%ef%b7%90zyx.com", "%EF%BF%BDzyx.com", url_parse::Component(0, 16), CanonHostInfo::BROKEN, -1},
411 {"\xef\xbc\x85\xef\xbc\x90\xef\xbc\x90.com", L"\xff05\xff10\xff10.com", "%00.com", url_parse::Component(0, 7), CanonHostInfo::BROKEN, -1},
412 {"%ef%bc%85%ef%bc%90%ef%bc%90.com", L"%ef%bc%85%ef%bc%90%ef%bc%90.com", "%00.com", url_parse::Component(0, 7), CanonHostInfo::BROKEN, -1},
421 {"%zz%66%a", L"%zz%66%a", "%25zzf%25a", url_parse::Component(0, 10), CanonHostInfo::BROKEN, -1},
423 {"%25", L"%25", "%25", url_parse::Component(0, 3), CanonHostInfo::BROKEN, -1},
424 {"hello%00", L"hello%00", "hello%00", url_parse::Component(0, 8), CanonHostInfo::BROKEN, -1},
429 {"%3g%78%63%30%2e%30%32%35%30%2E.01", L"%3g%78%63%30%2e%30%32%35%30%2E.01", "%253gxc0.0250..01", url_parse::Component(0, 17), CanonHostInfo::BROKEN, -1},
436 // Broken IP addresses get marked as such.
437 {"192.168.0.257", L"192.168.0.257", "192.168.0.257", url_parse::Component(0, 13), CanonHostInfo::BROKEN, -1}
    [all...]
url_canon_host.cc 342 // Canonicalization failed. Set BROKEN to notify the caller.
343 host_info->family = CanonHostInfo::BROKEN;
354 // real buffer. Otherwise, it's a hostname or broken IP, in which case
374 return (host_info.family != CanonHostInfo::BROKEN);
384 return (host_info.family != CanonHostInfo::BROKEN);
url_canon_ip.cc 112 // - BROKEN - The input was numeric, but too large for a 32-bit field.
177 return CanonHostInfo::BROKEN;
238 return CanonHostInfo::BROKEN;
251 return CanonHostInfo::BROKEN;
260 // Return true if we've made a final IPV4/BROKEN decision, false if the result
276 case CanonHostInfo::BROKEN:
277 // Definitely broken.
600 // Return true if we've made a final IPV6/BROKEN decision, false if the result
617 host_info->family = CanonHostInfo::BROKEN;
url_canon.h 344 BROKEN, // - Almost an IP, but was not canonicalized. This could be an
381 // A successful return is indicated by host_info->family != BROKEN. See the
    [all...]
  /external/chromium_org/url/
url_canon_unittest.cc 386 {"\xef\xb7\x90zyx.com", L"\xfdd0zyx.com", "%EF%BF%BDzyx.com", url_parse::Component(0, 16), CanonHostInfo::BROKEN, -1, ""},
388 {"%ef%b7%90zyx.com", L"%ef%b7%90zyx.com", "%EF%BF%BDzyx.com", url_parse::Component(0, 16), CanonHostInfo::BROKEN, -1, ""},
398 {"\xef\xbc\x85\xef\xbc\x90\xef\xbc\x90.com", L"\xff05\xff10\xff10.com", "%00.com", url_parse::Component(0, 7), CanonHostInfo::BROKEN, -1, ""},
399 {"%ef%bc%85%ef%bc%90%ef%bc%90.com", L"%ef%bc%85%ef%bc%90%ef%bc%90.com", "%00.com", url_parse::Component(0, 7), CanonHostInfo::BROKEN, -1, ""},
408 {"%zz%66%a", L"%zz%66%a", "%25zzf%25a", url_parse::Component(0, 10), CanonHostInfo::BROKEN, -1, ""},
410 {"%25", L"%25", "%25", url_parse::Component(0, 3), CanonHostInfo::BROKEN, -1, ""},
411 {"hello%00", L"hello%00", "hello%00", url_parse::Component(0, 8), CanonHostInfo::BROKEN, -1, ""},
416 {"%3g%78%63%30%2e%30%32%35%30%2E.01", L"%3g%78%63%30%2e%30%32%35%30%2E.01", "%253gxc0.0250..01", url_parse::Component(0, 17), CanonHostInfo::BROKEN, -1, ""},
423 // Broken IP addresses get marked as such.
424 {"192.168.0.257", L"192.168.0.257", "192.168.0.257", url_parse::Component(0, 13), CanonHostInfo::BROKEN, -1, ""}
    [all...]
url_canon_ip.cc 87 // - BROKEN - The input was numeric, but too large for a 32-bit field.
152 return CanonHostInfo::BROKEN;
175 // Set to true if one or more components are BROKEN. BROKEN is only
176 // returned if all components are IPV4 or BROKEN, so, for example,
177 // 12345678912345.de returns NEUTRAL rather than broken.
178 bool broken = false; local
185 if (family == CanonHostInfo::BROKEN) {
186 broken = true;
188 // Stop if we hit a non-BROKEN invalid non-empty component
    [all...]
url_canon_host.cc 317 // Canonicalization failed. Set BROKEN to notify the caller.
318 host_info->family = CanonHostInfo::BROKEN;
329 // real buffer. Otherwise, it's a hostname or broken IP, in which case
349 return (host_info.family != CanonHostInfo::BROKEN);
359 return (host_info.family != CanonHostInfo::BROKEN);
url_canon.h 324 BROKEN, // - Almost an IP, but was not canonicalized. This could be an
372 // A successful return is indicated by host_info->family != BROKEN. See the
    [all...]
  /external/chromium_org/net/base/
net_util.cc     [all...]
  /external/chromium/net/base/
net_util.cc 408 // adjacent encoded words. Some broken mail clients emit headers
    [all...]
  /external/srec/config/en.us/dictionary/
c0.6     [all...]
  /external/bison/build-aux/
texinfo.tex     [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texinfo.tex     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 

Completed in 344 milliseconds