OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DnsSocketPool
(Results
1 - 7
of
7
) 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
...]
dns_client.cc
32
scoped_ptr<
DnsSocketPool
> socket_pool(
33
config.randomize_ports ?
DnsSocketPool
::CreateDefault(factory)
34
:
DnsSocketPool
::CreateNull(factory));
dns_session.h
61
scoped_ptr<
DnsSocketPool
> socket_pool,
124
scoped_ptr<
DnsSocketPool
> socket_pool_;
dns_session_unittest.cc
86
class MockDnsSocketPool : public
DnsSocketPool
{
89
:
DnsSocketPool
(factory), test_(test) { }
129
DnsSocketPool
* dns_socket_pool =
133
scoped_ptr<
DnsSocketPool
>(dns_socket_pool),
dns_session.cc
82
scoped_ptr<
DnsSocketPool
> socket_pool,
dns_transaction_unittest.cc
351
DnsSocketPool
::CreateNull(socket_factory_.get()),
[
all
...]
Completed in 78 milliseconds