HomeSort by relevance Sort by last modified time
    Searched defs:DnsSocketPool (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/net/dns/
dns_socket_pool.h 22 // A DnsSocketPool is an abstraction layer around a ClientSocketFactory that
25 class NET_EXPORT_PRIVATE DnsSocketPool {
27 virtual ~DnsSocketPool() { }
29 // Creates a DnsSocketPool that implements the default strategy for managing
32 static scoped_ptr<DnsSocketPool> CreateDefault(
35 // Creates a DnsSocketPool that implements a "null" strategy -- no sockets are
38 static scoped_ptr<DnsSocketPool> CreateNull(
41 // Initializes the DnsSocketPool. |nameservers| is the list of nameservers
42 // for which the DnsSocketPool will manage sockets; |net_log| is the NetLog
71 DnsSocketPool(ClientSocketFactory* socket_factory)
    [all...]
dns_socket_pool.cc 41 DnsSocketPool::DnsSocketPool(ClientSocketFactory* socket_factory)
48 void DnsSocketPool::InitializeInternal(
59 scoped_ptr<StreamSocket> DnsSocketPool::CreateTCPSocket(
69 scoped_ptr<DatagramClientSocket> DnsSocketPool::CreateConnectedSocket(
92 class NullDnsSocketPool : public DnsSocketPool {
95 : DnsSocketPool(factory) {
119 scoped_ptr<DnsSocketPool> DnsSocketPool::CreateNull(
121 return scoped_ptr<DnsSocketPool>(new NullDnsSocketPool(factory))
    [all...]

Completed in 36 milliseconds