HomeSort by relevance Sort by last modified time
    Searched refs:RtcEventLog (Results 1 - 21 of 21) sorted by null

  /external/webrtc/webrtc/call/
rtc_event_log.h 33 class RtcEventLog {
35 virtual ~RtcEventLog() {}
37 static rtc::scoped_ptr<RtcEventLog> Create();
46 // If the file cannot be opened, the RtcEventLog will not start logging.
50 // function is called. The RtcEventLog takes ownership of the supplied
85 // Reads an RtcEventLog file and returns true when reading was successful.
rtc_event_log.cc 40 class RtcEventLogImpl final : public RtcEventLog {
66 class RtcEventLogImpl final : public RtcEventLog {
500 bool RtcEventLog::ParseRtcEventLog(const std::string& file_name,
518 // RtcEventLog member functions.
519 rtc::scoped_ptr<RtcEventLog> RtcEventLog::Create() {
520 return rtc::scoped_ptr<RtcEventLog>(new RtcEventLogImpl());
rtc_event_log_unittest.cc 415 // Test for the RtcEventLog class. Dumps some RTP packets and other events
474 rtc::scoped_ptr<RtcEventLog> log_dumper(RtcEventLog::Create());
512 ASSERT_TRUE(RtcEventLog::ParseRtcEventLog(temp_filename, &parsed_stream));
640 rtc::scoped_ptr<RtcEventLog> log_dumper(RtcEventLog::Create());
661 ASSERT_TRUE(RtcEventLog::ParseRtcEventLog(temp_filename, &parsed_stream));
rtc_event_log2rtp_dump.cc 76 "Tool for converting an RtcEventLog file to an RTP dump file.\n"
98 if (!webrtc::RtcEventLog::ParseRtcEventLog(input_file, &event_stream)) {
call.cc 150 RtcEventLog* event_log_ = nullptr;
  /external/webrtc/webrtc/modules/bitrate_controller/include/
bitrate_controller.h 26 class RtcEventLog;
60 virtual void SetEventLog(RtcEventLog* event_log) = 0;
  /external/webrtc/webrtc/voice_engine/include/
voe_codec.h 38 class RtcEventLog;
137 virtual RtcEventLog* GetEventLog() = 0;
  /external/webrtc/webrtc/modules/bitrate_controller/
send_side_bandwidth_estimation.h 23 class RtcEventLog;
48 void SetEventLog(RtcEventLog* event_log);
89 RtcEventLog* event_log_;
bitrate_controller_impl.h 44 void SetEventLog(RtcEventLog* event_log) override;
bitrate_controller_impl.cc 132 void BitrateControllerImpl::SetEventLog(RtcEventLog* event_log) {
send_side_bandwidth_estimation.cc 287 void SendSideBandwidthEstimation::SetEventLog(RtcEventLog* event_log) {
  /external/webrtc/webrtc/voice_engine/
channel_manager.h 116 RtcEventLog* GetEventLog() const;
130 rtc::scoped_ptr<RtcEventLog> event_log_;
voe_codec_impl.h 61 RtcEventLog* GetEventLog() override;
channel_manager.cc 53 event_log_(RtcEventLog::Create()) {}
133 RtcEventLog* ChannelManager::GetEventLog() const {
channel.h 56 class RtcEventLog;
179 RtcEventLog* const event_log,
183 RtcEventLog* const event_log,
504 RtcEventLog* const event_log_;
voe_codec_impl.cc 380 RtcEventLog* VoECodecImpl::GetEventLog() {
channel.cc 723 RtcEventLog* const event_log,
804 RtcEventLog* const event_log,
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
rtc_event_log_source.cc 124 return RtcEventLog::ParseRtcEventLog(file_name, event_log_.get());
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
codec_test.cc 181 webrtc::RtcEventLog* event_log = voe_codec_->GetEventLog();
  /external/webrtc/webrtc/test/
mock_voice_engine.h 142 MOCK_METHOD0(GetEventLog, RtcEventLog*());
  /external/webrtc/talk/media/webrtc/
fakewebrtcvoiceengine.h 396 webrtc::RtcEventLog* GetEventLog() { return nullptr; }

Completed in 382 milliseconds