Home
last modified time | relevance | path

Searched refs:GuardedAsyncInvoker (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/base/
Dasyncinvoker.cc80 GuardedAsyncInvoker::GuardedAsyncInvoker() : thread_(Thread::Current()) { in GuardedAsyncInvoker() function in rtc::GuardedAsyncInvoker
82 &GuardedAsyncInvoker::ThreadDestroyed); in GuardedAsyncInvoker()
85 GuardedAsyncInvoker::~GuardedAsyncInvoker() { in ~GuardedAsyncInvoker()
88 bool GuardedAsyncInvoker::Flush(uint32_t id) { in Flush()
96 void GuardedAsyncInvoker::ThreadDestroyed() { in ThreadDestroyed()
Dthread_unittest.cc531 void AsyncInvokeIntCallback(GuardedAsyncInvoker* invoker, Thread* thread) { in AsyncInvokeIntCallback()
555 CreateInvoker(scoped_ptr<GuardedAsyncInvoker>* invoker) : invoker_(invoker) {} in CreateInvoker()
556 void operator()() { invoker_->reset(new GuardedAsyncInvoker()); } in operator ()()
557 scoped_ptr<GuardedAsyncInvoker>* invoker_;
565 scoped_ptr<GuardedAsyncInvoker> invoker; in TEST_F()
583 scoped_ptr<GuardedAsyncInvoker> invoker; in TEST_F()
600 GuardedAsyncInvoker invoker; in TEST_F()
608 GuardedAsyncInvoker invoker; in TEST_F()
620 GuardedAsyncInvoker invoker; in TEST_F()
631 GuardedAsyncInvoker invoker; in TEST_F()
[all …]
Dasyncinvoker.h152 class GuardedAsyncInvoker : public sigslot::has_slots<> {
154 GuardedAsyncInvoker();
155 ~GuardedAsyncInvoker() override;
/external/webrtc/talk/app/webrtc/java/jni/
Dandroidvideocapturer_jni.h107 rtc::scoped_ptr<rtc::GuardedAsyncInvoker> invoker_ GUARDED_BY(capturer_lock_);
Dandroidvideocapturer_jni.cc86 invoker_.reset(new rtc::GuardedAsyncInvoker()); in Start()