Home
last modified time | relevance | path

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

/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/
H A Dquic_session_test.cc1142 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local
1143 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm); in TEST_P()
1153 EXPECT_CALL(*send_algorithm, CanSend(_)).WillRepeatedly(Return(true)); in TEST_P()
1154 EXPECT_CALL(*send_algorithm, GetCongestionWindow()) in TEST_P()
1156 EXPECT_CALL(*send_algorithm, InRecovery()).WillRepeatedly(Return(false)); in TEST_P()
1171 EXPECT_CALL(*send_algorithm, OnPacketSent(_, _, _, _, _)); in TEST_P()
1172 EXPECT_CALL(*send_algorithm, OnApplicationLimited(_)); in TEST_P()
1183 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local
1184 QuicConnectionPeer::SetSendAlgorithm(session_.connection(), send_algorithm); in TEST_P()
1194 EXPECT_CALL(*send_algorithm, CanSend(_)).WillOnce(Return(true)); in TEST_P()
[all …]
H A Dquic_sent_packet_manager.cc1171 SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
1172 if (debug_delegate_ != nullptr && send_algorithm != nullptr) { in SetSendAlgorithm()
1174 send_algorithm->GetCongestionControlType()); in SetSendAlgorithm()
1176 send_algorithm_.reset(send_algorithm); in SetSendAlgorithm()
1177 pacing_sender_.set_sender(send_algorithm); in SetSendAlgorithm()
H A Dquic_connection.cc5290 alternative_path_.send_algorithm != nullptr)); in StartEffectivePeerMigration()
5305 previous_default_path.send_algorithm = OnPeerIpAddressChanged(); in StartEffectivePeerMigration()
5309 alternative_path_.send_algorithm != nullptr && in StartEffectivePeerMigration()
5314 alternative_path_.send_algorithm.release()); in StartEffectivePeerMigration()
5405 QUICHE_DCHECK(alternative_path_.send_algorithm != nullptr); in StartEffectivePeerMigration()
7105 send_algorithm = nullptr; in Clear()
7129 send_algorithm = std::move(other.send_algorithm); in operator =()
7336 if (alternative_path_.send_algorithm != nullptr) { in RestoreToLastValidatedPath()
7338 alternative_path_.send_algorithm.release()); in RestoreToLastValidatedPath()
H A Dquic_sent_packet_manager.h447 void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm);
H A Dquic_connection.h1517 std::unique_ptr<SendAlgorithmInterface> send_algorithm; member
H A 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()
8870 const SendAlgorithmInterface* send_algorithm = manager_->GetSendAlgorithm(); in TEST_P() local
8880 EXPECT_NE(send_algorithm, manager_->GetSendAlgorithm()); in TEST_P()
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/http/
H A Dquic_spdy_session_test.cc876 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local
877 QuicConnectionPeer::SetSendAlgorithm(session_->connection(), send_algorithm); in TEST_P()
887 EXPECT_CALL(*send_algorithm, CanSend(_)).WillRepeatedly(Return(true)); in TEST_P()
888 EXPECT_CALL(*send_algorithm, GetCongestionWindow()) in TEST_P()
890 EXPECT_CALL(*send_algorithm, InRecovery()).WillRepeatedly(Return(false)); in TEST_P()
905 EXPECT_CALL(*send_algorithm, OnPacketSent(_, _, _, _, _)); in TEST_P()
906 EXPECT_CALL(*send_algorithm, OnApplicationLimited(_)); in TEST_P()
918 MockSendAlgorithm* send_algorithm = new StrictMock<MockSendAlgorithm>; in TEST_P() local
919 QuicConnectionPeer::SetSendAlgorithm(session_->connection(), send_algorithm); in TEST_P()
929 EXPECT_CALL(*send_algorithm, CanSend(_)).WillOnce(Return(true)); in TEST_P()
[all …]
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/test_tools/
H A Dquic_sent_packet_manager_peer.cc34 SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
35 sent_packet_manager->SetSendAlgorithm(send_algorithm); in SetSendAlgorithm()
H A Dquic_connection_peer.cc22 QuicConnection* connection, SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
23 GetSentPacketManager(connection)->SetSendAlgorithm(send_algorithm); in SetSendAlgorithm()
H A Dquic_sent_packet_manager_peer.h30 SendAlgorithmInterface* send_algorithm);
H A Dquic_connection_peer.h40 SendAlgorithmInterface* send_algorithm);
/aosp_15_r20/external/cronet/net/quic/
H A Dquic_http_stream_test.cc187 void SetSendAlgorithm(quic::SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument
188 quic::test::QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm); in SetSendAlgorithm()