Home
last modified time | relevance | path

Searched refs:PlatformThreadRef (Results 1 – 16 of 16) sorted by relevance

/external/libchrome/base/threading/
Dplatform_thread.h51 class PlatformThreadRef {
58 constexpr PlatformThreadRef() : id_(0) {} in PlatformThreadRef() function
60 explicit constexpr PlatformThreadRef(RefType id) : id_(id) {} in PlatformThreadRef() function
62 bool operator==(PlatformThreadRef other) const {
66 bool operator!=(PlatformThreadRef other) const { return id_ != other.id_; }
137 static PlatformThreadRef CurrentRef();
Dplatform_thread_posix.cc162 PlatformThreadRef PlatformThread::CurrentRef() { in CurrentRef()
163 return PlatformThreadRef(pthread_self()); in CurrentRef()
Dthread_checker_impl.h43 mutable PlatformThreadRef thread_id_;
Dthread_checker_impl.cc42 thread_id_ = PlatformThreadRef(); in DetachFromThread()
/external/webrtc/webrtc/base/
Dplatform_thread.h25 PlatformThreadRef CurrentThreadRef();
28 bool IsThreadRefEqual(const PlatformThreadRef& a, const PlatformThreadRef& b);
Dplatform_thread_types.h25 typedef DWORD PlatformThreadRef; typedef
28 typedef pthread_t PlatformThreadRef;
Dplatform_thread.cc42 PlatformThreadRef CurrentThreadRef() { in CurrentThreadRef()
50 bool IsThreadRefEqual(const PlatformThreadRef& a, const PlatformThreadRef& b) { in IsThreadRefEqual()
Dthread_checker_impl.h43 mutable PlatformThreadRef valid_thread_;
Dthread_checker_impl.cc26 const PlatformThreadRef current_thread = CurrentThreadRef(); in CalledOnValidThread()
/external/libchrome/base/synchronization/
Dlock.cc28 owning_thread_ref_ = PlatformThreadRef(); in CheckHeldAndUnmark()
Dlock.h98 base::PlatformThreadRef owning_thread_ref_;
/external/libchrome/base/task/sequence_manager/test/
Dlazy_thread_controller_for_test.h42 PlatformThreadRef thread_ref_;
/external/libchrome/base/test/
Dtest_simple_task_runner.h77 const PlatformThreadRef thread_ref_ = PlatformThread::CurrentRef();
/external/libchrome/mojo/public/cpp/bindings/tests/
Dbind_task_runner_unittest.cc110 const base::PlatformThreadRef thread_id_;
/external/libchrome/base/debug/
Dactivity_tracker.cc691 thread_id_(PlatformThreadRef()), in ThreadActivityTracker()
1052 return thread_id_ == PlatformThreadRef(); in CalledOnValidThread()
Dactivity_tracker.h751 const PlatformThreadRef thread_id_; // The thread this instance is bound to.