Home
last modified time | relevance | path

Searched refs:RtcEventLog (Results 1 – 21 of 21) sorted by relevance

/external/webrtc/webrtc/call/
Drtc_event_log.h33 class RtcEventLog {
35 virtual ~RtcEventLog() {} in ~RtcEventLog()
37 static rtc::scoped_ptr<RtcEventLog> Create();
Drtc_event_log.cc40 class RtcEventLogImpl final : public RtcEventLog {
66 class RtcEventLogImpl final : public RtcEventLog {
500 bool RtcEventLog::ParseRtcEventLog(const std::string& file_name,
519 rtc::scoped_ptr<RtcEventLog> RtcEventLog::Create() { in Create()
520 return rtc::scoped_ptr<RtcEventLog>(new RtcEventLogImpl()); in Create()
Drtc_event_log_unittest.cc474 rtc::scoped_ptr<RtcEventLog> log_dumper(RtcEventLog::Create()); in LogSessionAndReadBack()
512 ASSERT_TRUE(RtcEventLog::ParseRtcEventLog(temp_filename, &parsed_stream)); in LogSessionAndReadBack()
640 rtc::scoped_ptr<RtcEventLog> log_dumper(RtcEventLog::Create()); in DropOldEvents()
661 ASSERT_TRUE(RtcEventLog::ParseRtcEventLog(temp_filename, &parsed_stream)); in DropOldEvents()
Drtc_event_log2rtp_dump.cc98 if (!webrtc::RtcEventLog::ParseRtcEventLog(input_file, &event_stream)) { in main()
Dcall.cc150 RtcEventLog* event_log_ = nullptr;
/external/webrtc/webrtc/modules/bitrate_controller/
Dsend_side_bandwidth_estimation.h23 class RtcEventLog; variable
48 void SetEventLog(RtcEventLog* event_log);
89 RtcEventLog* event_log_;
Dbitrate_controller_impl.h44 void SetEventLog(RtcEventLog* event_log) override;
Dbitrate_controller_impl.cc132 void BitrateControllerImpl::SetEventLog(RtcEventLog* event_log) { in SetEventLog()
Dsend_side_bandwidth_estimation.cc287 void SendSideBandwidthEstimation::SetEventLog(RtcEventLog* event_log) { in SetEventLog()
/external/webrtc/webrtc/modules/bitrate_controller/include/
Dbitrate_controller.h26 class RtcEventLog; variable
60 virtual void SetEventLog(RtcEventLog* event_log) = 0;
/external/webrtc/webrtc/voice_engine/include/
Dvoe_codec.h38 class RtcEventLog; variable
137 virtual RtcEventLog* GetEventLog() = 0;
/external/webrtc/webrtc/voice_engine/
Dchannel_manager.h116 RtcEventLog* GetEventLog() const;
130 rtc::scoped_ptr<RtcEventLog> event_log_;
Dchannel_manager.cc53 event_log_(RtcEventLog::Create()) {} in ChannelManager()
133 RtcEventLog* ChannelManager::GetEventLog() const { in GetEventLog()
Dchannel.h56 class RtcEventLog; variable
179 RtcEventLog* const event_log,
183 RtcEventLog* const event_log,
504 RtcEventLog* const event_log_;
Dvoe_codec_impl.h61 RtcEventLog* GetEventLog() override;
Dvoe_codec_impl.cc380 RtcEventLog* VoECodecImpl::GetEventLog() { in GetEventLog()
Dchannel.cc723 RtcEventLog* const event_log, in CreateChannel()
804 RtcEventLog* const event_log, in Channel()
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
Drtc_event_log_source.cc124 return RtcEventLog::ParseRtcEventLog(file_name, event_log_.get()); in OpenFile()
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/
Dcodec_test.cc181 webrtc::RtcEventLog* event_log = voe_codec_->GetEventLog(); in TEST_F()
/external/webrtc/webrtc/test/
Dmock_voice_engine.h142 MOCK_METHOD0(GetEventLog, RtcEventLog*());
/external/webrtc/talk/media/webrtc/
Dfakewebrtcvoiceengine.h396 webrtc::RtcEventLog* GetEventLog() { return nullptr; } in GetEventLog()