/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()),
|
/external/chromium_org/net/socket/ |
client_socket_pool.cc | 25 base::TimeDelta ClientSocketPool::unused_idle_socket_timeout() { 30 void ClientSocketPool::set_unused_idle_socket_timeout(base::TimeDelta timeout) { 36 base::TimeDelta ClientSocketPool::used_idle_socket_timeout() { 41 void ClientSocketPool::set_used_idle_socket_timeout(base::TimeDelta timeout) { 46 ClientSocketPool::ClientSocketPool() {} 48 ClientSocketPool::~ClientSocketPool() {}
|
client_socket_pool.h | 62 // A ClientSocketPool is used to restrict the number of sockets open at a time. 65 class NET_EXPORT ClientSocketPool : public LowerLayeredPool { 90 // StreamSocket was reused, then ClientSocketPool will call 113 // ClientSocketPool will assign a priority to the new connections, if any. 141 // This flushes all state from the ClientSocketPool. This means that all 143 // Active sockets being held by ClientSocketPool clients will be discarded 184 ClientSocketPool(); 185 virtual ~ClientSocketPool(); 191 DISALLOW_COPY_AND_ASSIGN(ClientSocketPool);
|
socks_client_socket_pool.cc | 201 ClientSocketPool::unused_idle_socket_timeout(), 202 ClientSocketPool::used_idle_socket_timeout(),
|
client_socket_handle.h | 30 // connection. It is used by the ClientSocketPool to group similar connected 46 // ClientSocketPool to obtain a connected socket, possibly reusing one. This 48 // is used to determine the placement in ClientSocketPool's wait list. 54 // existing socket, ClientSocketPool may need to establish a new 87 // Disconnect method. This will result in the ClientSocketPool deleting the 91 // Used after Init() is called, but before the ClientSocketPool has 124 // Used by ClientSocketPool to initialize the ClientSocketHandle. 191 // not to try to cancel the request with the ClientSocketPool. Does not 199 ClientSocketPool* pool_; 207 int pool_id_; // See ClientSocketPool::ReleaseSocket() for an explanation [all...] |
socks_client_socket_pool.h | 108 : public ClientSocketPool, public HigherLayeredPool { 122 // ClientSocketPool implementation.
|
transport_client_socket_pool.h | 140 class NET_EXPORT_PRIVATE TransportClientSocketPool : public ClientSocketPool { 154 // ClientSocketPool implementation.
|
transport_client_socket_pool.cc | 423 ClientSocketPool::unused_idle_socket_timeout(), 424 ClientSocketPool::used_idle_socket_timeout(),
|
ssl_client_socket_pool.h | 177 : public ClientSocketPool, 204 // ClientSocketPool implementation.
|
transport_client_socket_pool_unittest.cc | 349 ClientSocketPool::kMaxConnectRetryIntervalMs)) {} 733 // ClientSocketPool which will crash if the group was not cleared properly. [all...] |
ssl_client_socket_pool.cc | 524 ClientSocketPool::unused_idle_socket_timeout(), 525 ClientSocketPool::used_idle_socket_timeout(),
|
/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_org/net/http/ |
http_proxy_client_socket_pool.cc | 421 ClientSocketPool::unused_idle_socket_timeout(), 422 ClientSocketPool::used_idle_socket_timeout(),
|
http_proxy_client_socket_pool.h | 177 : public ClientSocketPool, 193 // ClientSocketPool implementation.
|
/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...] |