/external/chromium/net/socket/ |
D | transport_client_socket_unittest.cc | 207 EXPECT_FALSE(sock_->IsConnectedAndIdle()); in TEST_P() 215 EXPECT_TRUE(sock_->IsConnectedAndIdle()); in TEST_P() 227 EXPECT_FALSE(sock_->IsConnectedAndIdle()); in TEST_P() 236 EXPECT_TRUE(sock_->IsConnectedAndIdle()); in TEST_P() 247 EXPECT_FALSE(sock_->IsConnectedAndIdle()); in TEST_P() 256 EXPECT_FALSE(sock_->IsConnectedAndIdle()); in TEST_P()
|
D | client_socket.h | 59 virtual bool IsConnectedAndIdle() const = 0;
|
D | tcp_client_socket_win.h | 47 virtual bool IsConnectedAndIdle() const;
|
D | socks_client_socket.h | 60 virtual bool IsConnectedAndIdle() const;
|
D | socks5_client_socket.h | 63 virtual bool IsConnectedAndIdle() const;
|
D | socks_client_socket.cc | 141 bool SOCKSClientSocket::IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::SOCKSClientSocket 142 return completed_handshake_ && transport_->socket()->IsConnectedAndIdle(); in IsConnectedAndIdle()
|
D | tcp_client_socket_libevent.h | 53 virtual bool IsConnectedAndIdle() const;
|
D | ssl_client_socket_mac.h | 56 virtual bool IsConnectedAndIdle() const;
|
D | ssl_client_socket_win.h | 61 virtual bool IsConnectedAndIdle() const;
|
D | socks_client_socket_unittest.cc | 382 EXPECT_FALSE(user_sock_->IsConnectedAndIdle()); in TEST_F() 393 EXPECT_FALSE(user_sock_->IsConnectedAndIdle()); in TEST_F()
|
D | ssl_client_socket_openssl.h | 70 virtual bool IsConnectedAndIdle() const;
|
D | socks5_client_socket.cc | 114 bool SOCKS5ClientSocket::IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::SOCKS5ClientSocket 115 return completed_handshake_ && transport_->socket()->IsConnectedAndIdle(); in IsConnectedAndIdle()
|
D | ssl_client_socket_nss.h | 75 virtual bool IsConnectedAndIdle() const;
|
D | socket_test_util.h | 581 virtual bool IsConnectedAndIdle() const; 624 virtual bool IsConnectedAndIdle() const; 677 virtual bool IsConnectedAndIdle() const;
|
D | client_socket_pool_base.cc | 382 if (!it->socket->IsConnectedAndIdle()) { in AssignIdleSocketToGroup() 588 return !socket->IsConnectedAndIdle(); in ShouldCleanup() 690 const bool can_reuse = socket->IsConnectedAndIdle() && in ReleaseSocket()
|
D | transport_client_socket_pool_unittest.cc | 65 virtual bool IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::__anon9230ecd40111::MockClientSocket 121 virtual bool IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::__anon9230ecd40111::MockFailingClientSocket 189 virtual bool IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::__anon9230ecd40111::MockPendingClientSocket
|
D | socket_test_util.cc | 642 bool MockClientSocket::IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::MockClientSocket 785 bool MockTCPClientSocket::IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::MockTCPClientSocket 981 bool DeterministicMockTCPClientSocket::IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::DeterministicMockTCPClientSocket
|
D | ssl_server_socket_unittest.cc | 142 virtual bool IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::__anon6f129d780111::FakeSocket
|
D | ssl_client_socket_mac.cc | 613 bool SSLClientSocketMac::IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::SSLClientSocketMac 622 return completed_handshake() && transport_->socket()->IsConnectedAndIdle(); in IsConnectedAndIdle()
|
D | ssl_client_socket_openssl.cc | 1066 bool SSLClientSocketOpenSSL::IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::SSLClientSocketOpenSSL 1067 bool ret = completed_handshake_ && transport_->socket()->IsConnectedAndIdle(); in IsConnectedAndIdle()
|
D | ssl_client_socket_win.cc | 690 bool SSLClientSocketWin::IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::SSLClientSocketWin 699 return completed_handshake() && transport_->socket()->IsConnectedAndIdle(); in IsConnectedAndIdle()
|
/external/chromium/net/http/ |
D | http_proxy_client_socket.cc | 136 bool HttpProxyClientSocket::IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::HttpProxyClientSocket 138 transport_->socket()->IsConnectedAndIdle(); in IsConnectedAndIdle() 242 if (keep_alive && transport_->socket()->IsConnectedAndIdle()) { in DidDrainBodyForAuthRestart()
|
D | http_proxy_client_socket.h | 81 virtual bool IsConnectedAndIdle() const;
|
/external/chromium/net/spdy/ |
D | spdy_proxy_client_socket.h | 79 virtual bool IsConnectedAndIdle() const;
|
D | spdy_proxy_client_socket.cc | 126 bool SpdyProxyClientSocket::IsConnectedAndIdle() const { in IsConnectedAndIdle() function in net::SpdyProxyClientSocket
|