Home | History | Annotate | Download | only in url

Lines Matching defs:broken

86 // - BROKEN  - The input was numeric, but too large for a 32-bit field.
150 return CanonHostInfo::BROKEN;
173 // Set to true if one or more components are BROKEN. BROKEN is only
174 // returned if all components are IPV4 or BROKEN, so, for example,
175 // 12345678912345.de returns NEUTRAL rather than broken.
176 bool broken = false;
183 if (family == CanonHostInfo::BROKEN) {
184 broken = true;
186 // Stop if we hit a non-BROKEN invalid non-empty component.
193 if (broken)
194 return CanonHostInfo::BROKEN;
202 return CanonHostInfo::BROKEN;
223 return CanonHostInfo::BROKEN;
232 // Return true if we've made a final IPV4/BROKEN decision, false if the result
249 case CanonHostInfo::BROKEN:
250 // Definitely broken.
558 // Return true if we've made a final IPV6/BROKEN decision, false if the result
574 host_info->family = CanonHostInfo::BROKEN;