Home
last modified time | relevance | path

Searched refs:send_algorithm (Results 1 – 12 of 12) sorted by relevance

/external/cronet/net/third_party/quiche/src/quiche/quic/core/
Dquic_session_test.cc1141 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local
1142 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm); in TEST_P()
1152 EXPECT_CALL(*send_algorithm, CanSend(_)).WillRepeatedly(Return(true)); in TEST_P()
1153 EXPECT_CALL(*send_algorithm, GetCongestionWindow()) in TEST_P()
1155 EXPECT_CALL(*send_algorithm, InRecovery()).WillRepeatedly(Return(false)); in TEST_P()
1170 EXPECT_CALL(*send_algorithm, OnPacketSent(_, _, _, _, _)); in TEST_P()
1171 EXPECT_CALL(*send_algorithm, OnApplicationLimited(_)); in TEST_P()
1182 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local
1183 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm); in TEST_P()
1193 EXPECT_CALL(*send_algorithm, CanSend(_)).WillOnce(Return(true)); in TEST_P()
[all …]
Dquic_sent_packet_manager.cc1168 SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
1169 if (debug_delegate_ != nullptr && send_algorithm != nullptr) { in SetSendAlgorithm()
1171 send_algorithm->GetCongestionControlType()); in SetSendAlgorithm()
1173 send_algorithm_.reset(send_algorithm); in SetSendAlgorithm()
1174 pacing_sender_.set_sender(send_algorithm); in SetSendAlgorithm()
Dquic_sent_packet_manager.h446 void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm);
Dquic_connection.cc5266 alternative_path_.send_algorithm != nullptr)); in StartEffectivePeerMigration()
5281 previous_default_path.send_algorithm = OnPeerIpAddressChanged(); in StartEffectivePeerMigration()
5285 alternative_path_.send_algorithm != nullptr && in StartEffectivePeerMigration()
5290 alternative_path_.send_algorithm.release()); in StartEffectivePeerMigration()
5381 QUICHE_DCHECK(alternative_path_.send_algorithm != nullptr); in StartEffectivePeerMigration()
7063 send_algorithm = nullptr; in Clear()
7087 send_algorithm = std::move(other.send_algorithm); in operator =()
7290 if (alternative_path_.send_algorithm != nullptr) { in RestoreToLastValidatedPath()
7292 alternative_path_.send_algorithm.release()); in RestoreToLastValidatedPath()
Dquic_connection.h1498 std::unique_ptr<SendAlgorithmInterface> send_algorithm; member
Dquic_connection_test.cc234 void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
235 QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm); in SetSendAlgorithm()
404 void EnablePathMtuDiscovery(MockSendAlgorithm* send_algorithm) { in EnablePathMtuDiscovery() argument
414 EXPECT_CALL(*send_algorithm, SetFromConfig(_, _)); in EnablePathMtuDiscovery()
421 EXPECT_CALL(*send_algorithm, PacingRate(_)) in EnablePathMtuDiscovery()
8826 const SendAlgorithmInterface* send_algorithm = manager_->GetSendAlgorithm(); in TEST_P() local
8836 EXPECT_NE(send_algorithm, manager_->GetSendAlgorithm()); in TEST_P()
/external/cronet/net/third_party/quiche/src/quiche/quic/core/http/
Dquic_spdy_session_test.cc852 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local
853 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm); in TEST_P()
863 EXPECT_CALL(*send_algorithm, CanSend(_)).WillRepeatedly(Return(true)); in TEST_P()
864 EXPECT_CALL(*send_algorithm, GetCongestionWindow()) in TEST_P()
866 EXPECT_CALL(*send_algorithm, InRecovery()).WillRepeatedly(Return(false)); in TEST_P()
881 EXPECT_CALL(*send_algorithm, OnPacketSent(_, _, _, _, _)); in TEST_P()
882 EXPECT_CALL(*send_algorithm, OnApplicationLimited(_)); in TEST_P()
893 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local
894 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm); in TEST_P()
904 EXPECT_CALL(*send_algorithm, CanSend(_)).WillOnce(Return(true)); in TEST_P()
[all …]
/external/cronet/net/third_party/quiche/src/quiche/quic/test_tools/
Dquic_sent_packet_manager_peer.cc34 SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
35 sent_packet_manager->SetSendAlgorithm(send_algorithm); in SetSendAlgorithm()
Dquic_sent_packet_manager_peer.h30 SendAlgorithmInterface* send_algorithm);
Dquic_connection_peer.cc22 QuicConnection* connection, SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
23 GetSentPacketManager(connection)->SetSendAlgorithm(send_algorithm); in SetSendAlgorithm()
Dquic_connection_peer.h40 SendAlgorithmInterface* send_algorithm);
/external/cronet/net/quic/
Dquic_http_stream_test.cc179 void SetSendAlgorithm(quic::SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
180 quic::test::QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm); in SetSendAlgorithm()