HomeSort by relevance Sort by last modified time
    Searched refs:ClientSocketPool (Results 1 - 17 of 17) sorted by null

  /external/chromium/net/socket/
client_socket_pool.cc 20 int ClientSocketPool::unused_idle_socket_timeout() {
25 void ClientSocketPool::set_unused_idle_socket_timeout(int timeout) {
29 ClientSocketPool::ClientSocketPool() {}
31 ClientSocketPool::~ClientSocketPool() {}
client_socket_pool.h 29 // A ClientSocketPool is used to restrict the number of sockets open at a time.
32 class ClientSocketPool {
53 // ClientSocket was reused, then ClientSocketPool will call
76 // ClientSocketPool will assign a priority to the new connections, if any.
104 // This flushes all state from the ClientSocketPool. This means that all
106 // held by ClientSocketPool clients will be discarded when released back to
142 ClientSocketPool();
143 virtual ~ClientSocketPool();
149 DISALLOW_COPY_AND_ASSIGN(ClientSocketPool);
152 // ClientSocketPool subclasses should indicate valid SocketParams via th
    [all...]
client_socket_handle.h 29 // connection. It is used by the ClientSocketPool to group similar connected
45 // ClientSocketPool to obtain a connected socket, possibly reusing one. This
47 // is used to determine the placement in ClientSocketPool's wait list.
53 // existing socket, ClientSocketPool may need to establish a new
86 // Disconnect method. This will result in the ClientSocketPool deleting the
90 // Used after Init() is called, but before the ClientSocketPool has
103 // Used by ClientSocketPool to initialize the ClientSocketHandle.
157 // not to try to cancel the request with the ClientSocketPool. Does not
165 ClientSocketPool* pool_;
172 int pool_id_; // See ClientSocketPool::ReleaseSocket() for an explanation
    [all...]
socks_client_socket_pool.h 112 class SOCKSClientSocketPool : public ClientSocketPool {
124 // ClientSocketPool methods:
tcp_client_socket_pool.h 121 class TCPClientSocketPool : public ClientSocketPool {
133 // ClientSocketPool methods:
transport_client_socket_pool.h 142 class TransportClientSocketPool : public ClientSocketPool {
154 // ClientSocketPool methods:
socks_client_socket_pool.cc 229 ClientSocketPool::unused_idle_socket_timeout()),
ssl_client_socket_pool.h 178 class SSLClientSocketPool : public ClientSocketPool,
201 // ClientSocketPool methods:
transport_client_socket_pool_unittest.cc 266 delay_ms_(ClientSocketPool::kMaxConnectRetryIntervalMs) {}
624 // ClientSocketPool which will crash if the group was not cleared properly.
914 ClientSocketPool::kMaxConnectRetryIntervalMs + 50);
    [all...]
tcp_client_socket_pool.cc 253 ClientSocketPool::unused_idle_socket_timeout()),
transport_client_socket_pool.cc 431 ClientSocketPool::unused_idle_socket_timeout()),
client_socket_pool_base.h 7 // Subclasses of ClientSocketPool should compose ClientSocketPoolBase to handle
16 // ConnectJob with a SocketParams. Subclasses of ClientSocketPool should
163 // Used to specify specific behavior for the ClientSocketPool.
231 // See ClientSocketPool::RequestSocket for documentation on this function.
236 // See ClientSocketPool::RequestSocket for documentation on this function.
241 // See ClientSocketPool::CancelRequest for documentation on this function.
245 // See ClientSocketPool::ReleaseSocket for documentation on this function.
250 // See ClientSocketPool::Flush for documentation on this function.
253 // See ClientSocketPool::CloseIdleSockets for documentation on this function.
256 // See ClientSocketPool::IdleSocketCount() for documentation on this function
    [all...]
ssl_client_socket_pool.cc 514 ClientSocketPool::unused_idle_socket_timeout()),
client_socket_pool_base_unittest.cc 373 class TestClientSocketPool : public ClientSocketPool {
553 ClientSocketPool::unused_idle_socket_timeout()),
    [all...]
  /external/chromium/net/http/
http_proxy_client_socket_pool.h 173 class HttpProxyClientSocketPool : public ClientSocketPool {
186 // ClientSocketPool methods:
http_proxy_client_socket_pool.cc 433 ClientSocketPool::unused_idle_socket_timeout()),
  /external/chromium/chrome/browser/
browser_main.cc 335 net::ClientSocketPool::set_unused_idle_socket_timeout(5);
337 net::ClientSocketPool::set_unused_idle_socket_timeout(10);
339 net::ClientSocketPool::set_unused_idle_socket_timeout(20);
341 net::ClientSocketPool::set_unused_idle_socket_timeout(60);
    [all...]

Completed in 341 milliseconds