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

  /external/chromium/net/http/
http_proxy_client_socket.cc 136 bool HttpProxyClientSocket::IsConnectedAndIdle() const {
138 transport_->socket()->IsConnectedAndIdle();
242 if (keep_alive && transport_->socket()->IsConnectedAndIdle()) {
  /external/chromium/net/socket/
socks5_client_socket.cc 114 bool SOCKS5ClientSocket::IsConnectedAndIdle() const {
115 return completed_handshake_ && transport_->socket()->IsConnectedAndIdle();
socks_client_socket.cc 141 bool SOCKSClientSocket::IsConnectedAndIdle() const {
142 return completed_handshake_ && transport_->socket()->IsConnectedAndIdle();
ssl_server_socket_unittest.cc 142 virtual bool IsConnectedAndIdle() const {
tcp_client_socket_libevent.cc 362 bool TCPClientSocketLibevent::IsConnectedAndIdle() const {
ssl_client_socket_mac.cc 613 bool SSLClientSocketMac::IsConnectedAndIdle() const {
620 // transport_->socket()->IsConnectedAndIdle() returns the desired false
622 return completed_handshake() && transport_->socket()->IsConnectedAndIdle();
    [all...]
ssl_client_socket_win.cc 690 bool SSLClientSocketWin::IsConnectedAndIdle() const {
697 // transport_->socket()->IsConnectedAndIdle() returns the desired false
699 return completed_handshake() && transport_->socket()->IsConnectedAndIdle();
    [all...]
tcp_client_socket_win.cc 456 bool TCPClientSocketWin::IsConnectedAndIdle() const {
transport_client_socket_pool_unittest.cc 65 virtual bool IsConnectedAndIdle() const {
121 virtual bool IsConnectedAndIdle() const {
189 virtual bool IsConnectedAndIdle() const {
    [all...]
socket_test_util.cc 642 bool MockClientSocket::IsConnectedAndIdle() const {
785 bool MockTCPClientSocket::IsConnectedAndIdle() const {
981 bool DeterministicMockTCPClientSocket::IsConnectedAndIdle() const {
    [all...]
client_socket_pool_base_unittest.cc 73 virtual bool IsConnectedAndIdle() const { return connected_; }
    [all...]
ssl_client_socket_nss.cc 707 bool SSLClientSocketNSS::IsConnectedAndIdle() const {
714 // transport_->socket()->IsConnectedAndIdle() returns the desired false
717 bool ret = completed_handshake_ && transport_->socket()->IsConnectedAndIdle();
    [all...]
  /external/chromium/net/spdy/
spdy_proxy_client_socket.cc 126 bool SpdyProxyClientSocket::IsConnectedAndIdle() const {

Completed in 106 milliseconds