Home
last modified time | relevance | path

Searched refs:RtcEventLogImpl (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/logging/rtc_event_log/
Drtc_event_log_impl.cc57 RtcEventLogImpl::RtcEventLogImpl(RtcEventLog::EncodingType encoding_type, in RtcEventLogImpl() function in webrtc::RtcEventLogImpl
69 RtcEventLogImpl::~RtcEventLogImpl() { in ~RtcEventLogImpl()
83 bool RtcEventLogImpl::StartLogging(std::unique_ptr<RtcEventLogOutput> output, in StartLogging()
116 void RtcEventLogImpl::StopLogging() { in StopLogging()
128 void RtcEventLogImpl::StopLogging(std::function<void()> callback) { in StopLogging()
142 void RtcEventLogImpl::Log(std::unique_ptr<RtcEvent> event) { in Log()
154 void RtcEventLogImpl::ScheduleOutput() { in ScheduleOutput()
190 void RtcEventLogImpl::LogToMemory(std::unique_ptr<RtcEvent> event) { in LogToMemory()
203 void RtcEventLogImpl::LogEventsFromMemoryToOutput() { in LogEventsFromMemoryToOutput()
234 void RtcEventLogImpl::WriteConfigsAndHistoryToOutput( in WriteConfigsAndHistoryToOutput()
[all …]
Drtc_event_log_impl.h32 class RtcEventLogImpl final : public RtcEventLog {
34 RtcEventLogImpl(EncodingType encoding_type,
36 RtcEventLogImpl(const RtcEventLogImpl&) = delete;
37 RtcEventLogImpl& operator=(const RtcEventLogImpl&) = delete;
39 ~RtcEventLogImpl() override;
/external/webrtc/api/rtc_event_log/
Drtc_event_log_factory.cc32 return std::make_unique<RtcEventLogImpl>(encoding_type, task_queue_factory_); in CreateRtcEventLog()