Home
last modified time | relevance | path

Searched refs:timer_thread_ (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/system_wrappers/source/
Devent_timer_posix.cc35 timer_thread_(nullptr), in EventTimerPosix()
139 if (timer_thread_) { in StartTimer()
157 timer_thread_.reset(new rtc::PlatformThread(Run, this, thread_name)); in StartTimer()
160 timer_thread_->Start(); in StartTimer()
161 timer_thread_->SetPriority(rtc::kRealtimePriority); in StartTimer()
217 if (timer_thread_) { in StopTimer()
218 timer_thread_->Stop(); in StopTimer()
219 timer_thread_.reset(); in StopTimer()
Devent_timer_posix.h50 rtc::scoped_ptr<rtc::PlatformThread> timer_thread_; variable