/external/webrtc/rtc_base/ |
D | platform_thread_types.h | 37 typedef DWORD PlatformThreadRef; typedef 40 typedef zx_handle_t PlatformThreadRef; 43 typedef pthread_t PlatformThreadRef; 52 PlatformThreadRef CurrentThreadRef(); 55 bool IsThreadRefEqual(const PlatformThreadRef& a, const PlatformThreadRef& b);
|
D | platform_thread_types.cc | 51 PlatformThreadRef CurrentThreadRef() { in CurrentThreadRef() 61 bool IsThreadRefEqual(const PlatformThreadRef& a, const PlatformThreadRef& b) { in IsThreadRefEqual()
|
D | race_checker.cc | 26 const PlatformThreadRef current_thread = CurrentThreadRef(); in Acquire() 33 const PlatformThreadRef accessing_thread = accessing_thread_; in Acquire()
|
D | race_checker.h | 37 mutable volatile PlatformThreadRef accessing_thread_;
|
D | platform_thread.h | 66 PlatformThreadRef GetThreadRef() const;
|
D | platform_thread.cc | 100 PlatformThreadRef PlatformThread::GetThreadRef() const { in GetThreadRef()
|
D | thread.h | 161 const PlatformThreadRef main_thread_ref_;
|
/external/webrtc/rtc_base/synchronization/ |
D | mutex.h | 43 rtc::PlatformThreadRef current = CurrentThreadRefAssertingNotBeingHolder(); in Lock() 49 rtc::PlatformThreadRef current = CurrentThreadRefAssertingNotBeingHolder(); in TryLock() 67 rtc::PlatformThreadRef CurrentThreadRefAssertingNotBeingHolder() { in CurrentThreadRefAssertingNotBeingHolder() 68 rtc::PlatformThreadRef holder = holder_.load(std::memory_order_relaxed); in CurrentThreadRefAssertingNotBeingHolder() 69 rtc::PlatformThreadRef current = rtc::CurrentThreadRef(); in CurrentThreadRefAssertingNotBeingHolder() 90 std::atomic<rtc::PlatformThreadRef> holder_ = {0};
|
D | sequence_checker.cc | 49 const rtc::PlatformThreadRef current_thread = rtc::CurrentThreadRef(); in IsCurrent() 78 const rtc::PlatformThreadRef current_thread = rtc::CurrentThreadRef(); in ExpectationToString()
|
D | sequence_checker.h | 48 mutable rtc::PlatformThreadRef valid_thread_ RTC_GUARDED_BY(lock_);
|
/external/libchrome/base/threading/ |
D | platform_thread.h | 51 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();
|
D | platform_thread_posix.cc | 162 PlatformThreadRef PlatformThread::CurrentRef() { in CurrentRef() 163 return PlatformThreadRef(pthread_self()); in CurrentRef()
|
D | thread_checker_impl.h | 43 mutable PlatformThreadRef thread_id_;
|
D | thread_checker_impl.cc | 42 thread_id_ = PlatformThreadRef(); in DetachFromThread()
|
/external/webrtc/rtc_base/deprecated/ |
D | recursive_critical_section.h | 79 mutable PlatformThreadRef owning_thread_; 83 mutable PlatformThreadRef thread_; // Only used by RTC_DCHECKs.
|
D | recursive_critical_section.cc | 78 PlatformThreadRef self = CurrentThreadRef(); in Enter()
|
/external/libchrome/base/task_scheduler/ |
D | scheduler_single_thread_task_runner_manager_unittest.cc | 79 void CaptureThreadRef(PlatformThreadRef* thread_ref) { in CaptureThreadRef() 111 PlatformThreadRef thread_ref_1; in TEST_F() 114 PlatformThreadRef thread_ref_2; in TEST_F() 137 PlatformThreadRef thread_ref_1; in TEST_F() 140 PlatformThreadRef thread_ref_2; in TEST_F() 524 PlatformThreadRef thread_ref_1; in TEST_F() 527 PlatformThreadRef thread_ref_2; in TEST_F()
|
D | scheduler_worker_pool_impl_unittest.cc | 379 void TaskPostedBeforeStart(PlatformThreadRef* platform_thread_ref, in TaskPostedBeforeStart() 392 PlatformThreadRef task_1_thread_ref; in TEST_F() 393 PlatformThreadRef task_2_thread_ref; in TEST_F() 684 PlatformThreadRef thread_ref; in TEST_F() 687 [](PlatformThreadRef* thread_ref) { in TEST_F() 694 [](PlatformThreadRef* thread_ref) { in TEST_F() 705 [](PlatformThreadRef* thread_ref, in TEST_F() 749 [](PlatformThreadRef thread_ref, in TEST_F()
|
D | scheduler_single_thread_task_runner_manager.cc | 72 PlatformThreadRef thread_ref_;
|
/external/libchrome/base/synchronization/ |
D | lock.cc | 28 owning_thread_ref_ = PlatformThreadRef(); in CheckHeldAndUnmark()
|
D | lock.h | 98 base::PlatformThreadRef owning_thread_ref_;
|
/external/libchrome/base/task/sequence_manager/test/ |
D | lazy_thread_controller_for_test.h | 42 PlatformThreadRef thread_ref_;
|
/external/webrtc/api/test/ |
D | test_dependency_factory.cc | 25 const rtc::PlatformThreadRef main_thread = rtc::CurrentThreadRef(); in IsValidTestDependencyFactoryThread()
|
/external/libchrome/base/test/ |
D | test_simple_task_runner.h | 77 const PlatformThreadRef thread_ref_ = PlatformThread::CurrentRef();
|
/external/libchrome/mojo/public/cpp/bindings/tests/ |
D | bind_task_runner_unittest.cc | 110 const base::PlatformThreadRef thread_id_;
|