Searched refs:DDLogicalThread (Results 1 - 5 of 5) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector_interface.h33 struct DDLogicalThread;
66 DDLogicalThread *lt;
78 virtual DDLogicalThread* CreateLogicalThread(u64 ctx) { return nullptr; }
79 virtual void DestroyLogicalThread(DDLogicalThread *lt) {}
H A Dsanitizer_deadlock_detector1.cc29 struct DDLogicalThread { struct in namespace:__sanitizer
46 DDLogicalThread *CreateLogicalThread(u64 ctx) override;
47 void DestroyLogicalThread(DDLogicalThread *lt) override;
58 void MutexEnsureID(DDLogicalThread *lt, DDMutex *m);
80 DDLogicalThread* DD::CreateLogicalThread(u64 ctx) {
81 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(sizeof(*lt));
88 void DD::DestroyLogicalThread(DDLogicalThread *lt) {
89 lt->~DDLogicalThread();
98 void DD::MutexEnsureID(DDLogicalThread *l
[all...]
H A Dsanitizer_deadlock_detector2.cc71 struct DDLogicalThread { struct in namespace:__sanitizer
90 DDLogicalThread* CreateLogicalThread(u64 ctx);
91 void DestroyLogicalThread(DDLogicalThread *lt);
102 void CycleCheck(DDPhysicalThread *pt, DDLogicalThread *lt, DDMutex *mtx);
103 void Report(DDPhysicalThread *pt, DDLogicalThread *lt, int npath);
140 DDLogicalThread* DD::CreateLogicalThread(u64 ctx) {
141 DDLogicalThread *lt = (DDLogicalThread*)InternalAlloc(
142 sizeof(DDLogicalThread));
148 void DD::DestroyLogicalThread(DDLogicalThread *l
[all...]
/external/compiler-rt/lib/tsan/dd/
H A Ddd_rtl.h29 DDLogicalThread *dd_lt;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h389 DDLogicalThread *dd_lt;

Completed in 112 milliseconds