Searched refs:WasEverUsed (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium/net/socket/
H A Dclient_socket.h82 virtual bool WasEverUsed() const = 0;
H A Dsocks5_client_socket.h67 virtual bool WasEverUsed() const;
H A Dsocks_client_socket.h64 virtual bool WasEverUsed() const;
H A Dtcp_client_socket_win.h53 virtual bool WasEverUsed() const;
H A Dssl_client_socket_mac.h62 virtual bool WasEverUsed() const;
H A Dtcp_client_socket_libevent.h59 virtual bool WasEverUsed() const;
H A Dssl_client_socket_nss.h81 virtual bool WasEverUsed() const;
H A Dssl_client_socket_openssl.h76 virtual bool WasEverUsed() const;
H A Dssl_client_socket_win.h67 virtual bool WasEverUsed() const;
H A Dsocks_client_socket.cc165 bool SOCKSClientSocket::WasEverUsed() const { function in class:net::SOCKSClientSocket
167 return transport_->socket()->WasEverUsed();
H A Dsocks5_client_socket.cc138 bool SOCKS5ClientSocket::WasEverUsed() const { function in class:net::SOCKS5ClientSocket
140 return transport_->socket()->WasEverUsed();
H A Dclient_socket_pool_base.cc406 if (it->socket->WasEverUsed()) {
428 idle_socket.socket->WasEverUsed(),
604 if (socket->WasEverUsed())
624 j->socket->WasEverUsed() ?
H A Dsocket_test_util.cc795 bool MockTCPClientSocket::WasEverUsed() const { function in class:net::MockTCPClientSocket
985 bool DeterministicMockTCPClientSocket::WasEverUsed() const { function in class:net::DeterministicMockTCPClientSocket
1078 bool MockSSLClientSocket::WasEverUsed() const { function in class:net::MockSSLClientSocket
1079 return transport_->socket()->WasEverUsed();
H A Dssl_server_socket_unittest.cc165 virtual bool WasEverUsed() const { function in class:net::__anon2636::FakeSocket
H A Dsocket_test_util.h626 virtual bool WasEverUsed() const;
678 virtual bool WasEverUsed() const;
719 virtual bool WasEverUsed() const;
H A Dtransport_client_socket_pool_unittest.cc86 virtual bool WasEverUsed() const { return false; } function in class:net::__anon2642::MockClientSocket
136 virtual bool WasEverUsed() const { return false; } function in class:net::__anon2642::MockFailingClientSocket
210 virtual bool WasEverUsed() const { return false; } function in class:net::__anon2642::MockPendingClientSocket
H A Dssl_client_socket_mac.cc653 bool SSLClientSocketMac::WasEverUsed() const { function in class:net::SSLClientSocketMac
655 return transport_->socket()->WasEverUsed();
/external/chromium/net/http/
H A Dhttp_proxy_client_socket.h85 virtual bool WasEverUsed() const;
H A Dhttp_proxy_client_socket.cc161 bool HttpProxyClientSocket::WasEverUsed() const { function in class:net::HttpProxyClientSocket
163 return transport_->socket()->WasEverUsed();
/external/chromium/net/spdy/
H A Dspdy_proxy_client_socket.cc55 was_ever_used_ = spdy_stream_->WasEverUsed();
142 bool SpdyProxyClientSocket::WasEverUsed() const { function in class:net::SpdyProxyClientSocket
143 return was_ever_used_ || (spdy_stream_ && spdy_stream_->WasEverUsed());
487 was_ever_used_ = spdy_stream_->WasEverUsed();
H A Dspdy_proxy_client_socket.h83 virtual bool WasEverUsed() const;
H A Dspdy_stream.h151 bool WasEverUsed() const;
H A Dspdy_session.h193 bool WasEverUsed() const { function in class:net::SpdySession
194 return connection_->socket()->WasEverUsed();
H A Dspdy_stream.cc225 bool SpdyStream::WasEverUsed() const { function in class:net::SpdyStream
226 return session_->WasEverUsed();
H A Dspdy_proxy_client_socket_unittest.cc501 // ----------- WasEverUsed
517 EXPECT_FALSE(sock_->WasEverUsed());
519 EXPECT_TRUE(sock_->WasEverUsed());
521 EXPECT_TRUE(sock_->WasEverUsed());

Completed in 1507 milliseconds

12