HomeSort by relevance Sort by last modified time
    Searched refs:OnSentPacket (Results 1 - 25 of 30) sorted by null

1 2

  /external/webrtc/webrtc/modules/remote_bitrate_estimator/include/
send_time_history.h 28 bool OnSentPacket(uint16_t sequence_number, int64_t timestamp);
  /external/webrtc/webrtc/call/mock/
mock_congestion_controller.h 46 MOCK_METHOD1(OnSentPacket, void(const rtc::SentPacket& sent_packet));
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
transport_feedback_adapter.h 40 void OnSentPacket(uint16_t sequence_number, int64_t send_time_ms);
transport_feedback_adapter_unittest.cc 106 void OnSentPacket(PacketInfo info) {
110 adapter_->OnSentPacket(info.sequence_number, info.send_time_ms);
130 OnSentPacket(packet);
165 OnSentPacket(packet);
204 OnSentPacket(packet);
268 OnSentPacket(packet);
269 OnSentPacket(info);
transport_feedback_adapter.cc 60 void TransportFeedbackAdapter::OnSentPacket(uint16_t sequence_number,
63 send_time_history_.OnSentPacket(sequence_number, send_time_ms);
send_time_history.cc 42 bool SendTimeHistory::OnSentPacket(uint16_t sequence_number,
send_time_history_unittest.cc 39 history_.OnSentPacket(sequence_number, send_time_ms);
127 history_.OnSentPacket(sent_packets[i].sequence_number,
  /external/webrtc/webrtc/call/
congestion_controller.h 68 virtual void OnSentPacket(const rtc::SentPacket& sent_packet);
congestion_controller.cc 288 void CongestionController::OnSentPacket(const rtc::SentPacket& sent_packet) {
290 transport_feedback_adapter_->OnSentPacket(sent_packet.packet_id,
call.cc 91 void OnSentPacket(const rtc::SentPacket& sent_packet) override;
566 void Call::OnSentPacket(const rtc::SentPacket& sent_packet) {
569 congestion_controller_->OnSentPacket(sent_packet);
  /external/webrtc/webrtc/
call.h 138 virtual void OnSentPacket(const rtc::SentPacket& sent_packet) = 0;
  /external/webrtc/webrtc/test/
direct_transport.cc 60 send_call_->OnSentPacket(sent_packet);
  /external/webrtc/webrtc/p2p/base/
relayport.h 100 // The OnSentPacket callback is left empty here since they are handled by
102 void OnSentPacket(rtc::AsyncPacketSocket* socket,
tcpport.h 100 void OnSentPacket(rtc::AsyncPacketSocket* socket,
dtlstransportchannel.cc 106 this, &DtlsTransportChannelWrapper::OnSentPacket);
514 void DtlsTransportChannelWrapper::OnSentPacket(
stunport.cc 225 socket_->SignalSentPacket.connect(this, &UDPPort::OnSentPacket);
341 void UDPPort::OnSentPacket(rtc::AsyncPacketSocket* socket,
tcpport.cc 261 incoming.socket->SignalSentPacket.connect(this, &TCPPort::OnSentPacket);
290 void TCPPort::OnSentPacket(rtc::AsyncPacketSocket* socket,
dtlstransportchannel.h 206 void OnSentPacket(TransportChannel* channel,
p2ptransportchannel.h 235 void OnSentPacket(const rtc::SentPacket& sent_packet);
relayport.cc 148 void OnSentPacket(rtc::AsyncPacketSocket* socket,
515 socket->SignalSentPacket.connect(this, &RelayEntry::OnSentPacket);
755 void RelayEntry::OnSentPacket(rtc::AsyncPacketSocket* socket,
757 port_->OnSentPacket(socket, sent_packet);
stunport.h 144 void OnSentPacket(rtc::AsyncPacketSocket* socket,
turnport.h 109 virtual void OnSentPacket(rtc::AsyncPacketSocket* socket,
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
send_side.cc 98 send_time_history_.OnSentPacket(media_packet->header().sequenceNumber,
  /external/webrtc/talk/media/webrtc/
fakewebrtccall.h 252 void OnSentPacket(const rtc::SentPacket& sent_packet) override;
fakewebrtccall.cc 440 void FakeCall::OnSentPacket(const rtc::SentPacket& sent_packet) {

Completed in 6127 milliseconds

1 2