Home
last modified time | relevance | path

Searched refs:dns_clients_ (Results 1 – 3 of 3) sorted by relevance

/system/connectivity/shill/
Dconnection_health_checker.cc159 dns_clients_.push_back(dns_client); in AddRemoteURL()
160 if (!dns_clients_[i]->Start(url.host(), &error)) { in AddRemoteURL()
216 dns_clients_.clear(); in SetConnection()
252 for (size_t i = 0; i < dns_clients_.size(); ++i) { in GarbageCollectDNSClients()
253 if (dns_clients_[i]->IsActive()) in GarbageCollectDNSClients()
254 keep.push_back(dns_clients_[i]); in GarbageCollectDNSClients()
256 discard.push_back(dns_clients_[i]); in GarbageCollectDNSClients()
258 dns_clients_.weak_clear(); in GarbageCollectDNSClients()
259 dns_clients_ = std::move(keep); in GarbageCollectDNSClients()
Dconnection_health_checker.h214 ScopedVector<DNSClient> dns_clients_; variable
Dconnection_health_checker_unittest.cc168 return health_checker_->dns_clients_; in dns_clients()