/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/ |
H A D | quic_session_test.cc | 1142 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 D | quic_sent_packet_manager.cc | 1171 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 D | quic_connection.cc | 5290 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 D | quic_sent_packet_manager.h | 447 void SetSendAlgorithm(SendAlgorithmInterface* send_algorithm);
|
H A D | quic_connection.h | 1517 std::unique_ptr<SendAlgorithmInterface> send_algorithm; member
|
H A D | quic_connection_test.cc | 234 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 D | quic_spdy_session_test.cc | 876 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 D | quic_sent_packet_manager_peer.cc | 34 SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument 35 sent_packet_manager->SetSendAlgorithm(send_algorithm); in SetSendAlgorithm()
|
H A D | quic_connection_peer.cc | 22 QuicConnection* connection, SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument 23 GetSentPacketManager(connection)->SetSendAlgorithm(send_algorithm); in SetSendAlgorithm()
|
H A D | quic_sent_packet_manager_peer.h | 30 SendAlgorithmInterface* send_algorithm);
|
H A D | quic_connection_peer.h | 40 SendAlgorithmInterface* send_algorithm);
|
/aosp_15_r20/external/cronet/net/quic/ |
H A D | quic_http_stream_test.cc | 187 void SetSendAlgorithm(quic::SendAlgorithmInterface* send_algorithm) { in SetSendAlgorithm() argument 188 quic::test::QuicConnectionPeer::SetSendAlgorithm(this, send_algorithm); in SetSendAlgorithm()
|