Lines Matching refs:host
62 ImmutableString host,
69 ent.host = std::move(host);
110 auto it = ents_.find(dnsq->host);
114 LOG(INFO) << "DNS entry not found for " << dnsq->host;
119 ImmutableString{std::begin(dnsq->host), std::end(dnsq->host)};
120 auto host = StringRef{host_copy};
122 rv = resolv->resolve(host);
125 LOG(INFO) << "Name lookup failed for " << host;
128 ents_.emplace(host, make_entry(nullptr, std::move(host_copy),
139 LOG(INFO) << "Name lookup failed for " << host;
142 ents_.emplace(host, make_entry(nullptr, std::move(host_copy),
150 LOG(INFO) << "Name lookup succeeded: " << host << " -> "
154 ents_.emplace(host, make_entry(nullptr, std::move(host_copy),
161 auto p = ents_.emplace(host,
183 LOG(INFO) << "DNS entry found for " << dnsq->host
188 auto host = StringRef{ent.host};
190 rv = resolv->resolve(host);
193 LOG(INFO) << "Name lookup failed for " << host;
204 LOG(INFO) << "Name lookup failed for " << host;
212 LOG(INFO) << "Name lookup succeeded: " << host << " -> "
232 LOG(INFO) << "Waiting for name lookup complete for " << dnsq->host;
239 LOG(INFO) << "Name lookup failed for " << dnsq->host << " (cached)";
244 LOG(INFO) << "Name lookup succeeded (cached): " << dnsq->host << " -> "
289 auto it = ents_.find(dnsq->host);