Home | History | Annotate | Download | only in src

Lines Matching defs:host_info

317             CanonHostInfo* host_info) {
320 host_info->family = CanonHostInfo::NEUTRAL;
321 host_info->out_host = url_parse::Component();
343 host_info->family = CanonHostInfo::BROKEN;
351 &canon_ip, host_info);
356 if (host_info->IsIPAddress()) {
362 host_info
371 CanonHostInfo host_info;
372 DoHost<char, unsigned char>(spec, host, output, &host_info);
373 *out_host = host_info.out_host;
374 return (host_info.family != CanonHostInfo::BROKEN);
381 CanonHostInfo host_info;
382 DoHost<char16, char16>(spec, host, output, &host_info);
383 *out_host = host_info.out_host;
384 return (host_info.family != CanonHostInfo::BROKEN);
390 CanonHostInfo *host_info) {
391 DoHost<char, unsigned char>(spec, host, output, host_info);
397 CanonHostInfo *host_info) {
398 DoHost<char16, char16>(spec, host, output, host_info);