Home
last modified time | relevance | path

Searched refs:RtpDump (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/utility/interface/
Drtp_dump.h23 class RtpDump
27 static RtpDump* CreateRtpDump();
30 static void DestroyRtpDump(RtpDump* object);
49 virtual ~RtpDump();
/external/chromium_org/third_party/webrtc/modules/utility/source/
Drtp_dump_impl.cc59 RtpDump* RtpDump::CreateRtpDump() in CreateRtpDump()
64 void RtpDump::DestroyRtpDump(RtpDump* object) in DestroyRtpDump()
76 RtpDump::~RtpDump() in ~RtpDump()
Drtp_dump_impl.h19 class RtpDumpImpl : public RtpDump
/external/chromium_org/third_party/webrtc/video_engine/
Dvie_sender.cc32 RtpDump::DestroyRtpDump(rtp_dump_); in ~ViESender()
61 rtp_dump_ = RtpDump::CreateRtpDump(); in StartRTPDump()
67 RtpDump::DestroyRtpDump(rtp_dump_); in StartRTPDump()
80 RtpDump::DestroyRtpDump(rtp_dump_); in StopRTPDump()
Dvie_sender.h25 class RtpDump; variable
52 RtpDump* rtp_dump_;
Dvie_receiver.h31 class RtpDump; variable
120 RtpDump* rtp_dump_;
Dvie_receiver.cc61 RtpDump::DestroyRtpDump(rtp_dump_); in ~ViEReceiver()
362 rtp_dump_ = RtpDump::CreateRtpDump(); in StartRTPDump()
368 RtpDump::DestroyRtpDump(rtp_dump_); in StartRTPDump()
381 RtpDump::DestroyRtpDump(rtp_dump_); in StopRTPDump()
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
Dtest_callbacks.h34 class RtpDump; variable
203 RtpDump* _rtpDump;
Dtest_callbacks.cc226 _rtpDump = RtpDump::CreateRtpDump(); in RTPSendCompleteCallback()
236 RtpDump::DestroyRtpDump(_rtpDump); in ~RTPSendCompleteCallback()
/external/chromium_org/third_party/webrtc/voice_engine/
Dchannel.h54 class RtpDump; variable
527 RtpDump& _rtpDumpIn;
528 RtpDump& _rtpDumpOut;
Dchannel.cc861 _rtpDumpIn(*RtpDump::CreateRtpDump()), in Channel()
862 _rtpDumpOut(*RtpDump::CreateRtpDump()), in Channel()
1042 RtpDump::DestroyRtpDump(&_rtpDumpIn); in ~Channel()
1043 RtpDump::DestroyRtpDump(&_rtpDumpOut); in ~Channel()
3581 RtpDump* rtpDumpPtr = (direction == kRtpIncoming) ? in StartRTPDump()
3614 RtpDump* rtpDumpPtr = (direction == kRtpIncoming) ? in StopRTPDump()
3639 RtpDump* rtpDumpPtr = (direction == kRtpIncoming) ? in RTPDumpIsActive()