/external/chromium_org/net/tools/quic/ |
quic_server_session.cc | 35 void QuicServerSession::ConnectionClose(QuicErrorCode error, bool from_peer) { 36 QuicSession::ConnectionClose(error, from_peer);
|
quic_server_session.h | 45 virtual void ConnectionClose(QuicErrorCode error, bool from_peer) OVERRIDE;
|
quic_epoll_connection_helper_test.cc | 149 EXPECT_CALL(visitor_, ConnectionClose(QUIC_CONNECTION_TIMED_OUT, !kFromPeer)); 174 EXPECT_CALL(visitor_, ConnectionClose(QUIC_CONNECTION_TIMED_OUT, !kFromPeer));
|
quic_dispatcher_test.cc | 222 EXPECT_CALL(*session1_, ConnectionClose(QUIC_PUBLIC_RESET, true)).Times(1)
|
/external/chromium_org/net/quic/ |
quic_crypto_stream.cc | 27 session()->ConnectionClose(framer->error(), false);
|
quic_client_session.h | 108 virtual void ConnectionClose(QuicErrorCode error, bool from_peer) OVERRIDE;
|
quic_crypto_stream_test.cc | 83 EXPECT_CALL(session_, ConnectionClose(QUIC_NO_ERROR, false));
|
quic_session.cc | 65 virtual void ConnectionClose(QuicErrorCode error, bool from_peer) OVERRIDE { 66 session_->ConnectionClose(error, from_peer); 173 void QuicSession::ConnectionClose(QuicErrorCode error, bool from_peer) { 181 it->second->ConnectionClose(error, from_peer); 182 // The stream should call CloseStream as part of ConnectionClose. 184 LOG(DFATAL) << ENDPOINT << "Stream failed to close under ConnectionClose";
|
reliable_quic_stream.h | 69 virtual void ConnectionClose(QuicErrorCode error, bool from_peer);
|
quic_session.h | 68 virtual void ConnectionClose(QuicErrorCode error, bool from_peer) OVERRIDE;
|
quic_client_session.cc | 263 void QuicClientSession::ConnectionClose(QuicErrorCode error, bool from_peer) { 271 QuicSession::ConnectionClose(error, from_peer);
|
quic_connection_test.cc | 803 EXPECT_CALL(visitor_, ConnectionClose(QUIC_INVALID_PACKET_HEADER, false)); 904 EXPECT_CALL(visitor_, ConnectionClose(QUIC_INVALID_ACK_DATA, false)); 925 EXPECT_CALL(visitor_, ConnectionClose(QUIC_INVALID_ACK_DATA, false)); 930 EXPECT_CALL(visitor_, ConnectionClose(QUIC_INVALID_ACK_DATA, false)); 944 EXPECT_CALL(visitor_, ConnectionClose(QUIC_INVALID_ACK_DATA, false)); 953 EXPECT_CALL(visitor_, ConnectionClose(QUIC_INVALID_ACK_DATA, false)); [all...] |
quic_session_test.cc | 261 session_.ConnectionClose(QUIC_CONNECTION_TIMED_OUT, true);
|
quic_connection_helper_test.cc | 375 EXPECT_CALL(visitor_, ConnectionClose(QUIC_CONNECTION_TIMED_OUT, false)); 435 EXPECT_CALL(visitor_, ConnectionClose(QUIC_CONNECTION_TIMED_OUT, !kFromPeer));
|
reliable_quic_stream.cc | 69 void ReliableQuicStream::ConnectionClose(QuicErrorCode error, bool from_peer) {
|
quic_connection.h | 72 virtual void ConnectionClose(QuicErrorCode error,
|
reliable_quic_stream_test.cc | 232 stream_->ConnectionClose(QUIC_INTERNAL_ERROR, false);
|
quic_connection.cc | [all...] |
/external/chromium_org/chrome/test/chromedriver/net/ |
net_util_unittest.cc | 127 TEST_F(FetchUrlTest, ConnectionClose) {
|
/external/chromium_org/net/quic/test_tools/ |
quic_test_utils.h | 188 MOCK_METHOD2(ConnectionClose, void(QuicErrorCode error, bool from_peer)); 287 MOCK_METHOD2(ConnectionClose, void(QuicErrorCode error, bool from_peer));
|