/external/llvm-project/compiler-rt/lib/tsan/dd/ |
D | dd_interceptors.cpp | 52 MutexAfterLock(thr, (uptr)m, true, false); in INTERCEPTOR() 60 MutexAfterLock(thr, (uptr)m, true, true); in INTERCEPTOR() 81 MutexAfterLock(thr, (uptr)m, true, false); in INTERCEPTOR() 89 MutexAfterLock(thr, (uptr)m, true, true); in INTERCEPTOR() 109 MutexAfterLock(thr, (uptr)m, false, false); in INTERCEPTOR() 117 MutexAfterLock(thr, (uptr)m, false, true); in INTERCEPTOR() 126 MutexAfterLock(thr, (uptr)m, false, true); in INTERCEPTOR() 134 MutexAfterLock(thr, (uptr)m, true, false); in INTERCEPTOR() 142 MutexAfterLock(thr, (uptr)m, true, true); in INTERCEPTOR() 151 MutexAfterLock(thr, (uptr)m, true, true); in INTERCEPTOR() [all …]
|
D | dd_rtl.cpp | 124 void MutexAfterLock(Thread *thr, uptr m, bool writelock, bool trylock) { in MutexAfterLock() function 132 ctx->dd->MutexAfterLock(&cb, &h->dd, writelock, trylock); in MutexAfterLock()
|
D | dd_rtl.h | 61 void MutexAfterLock(Thread *thr, uptr m, bool writelock, bool trylock);
|
/external/compiler-rt/lib/tsan/dd/ |
D | dd_interceptors.cc | 53 MutexAfterLock(thr, (uptr)m, true, false); in INTERCEPTOR() 61 MutexAfterLock(thr, (uptr)m, true, true); in INTERCEPTOR() 82 MutexAfterLock(thr, (uptr)m, true, false); in INTERCEPTOR() 90 MutexAfterLock(thr, (uptr)m, true, true); in INTERCEPTOR() 110 MutexAfterLock(thr, (uptr)m, false, false); in INTERCEPTOR() 118 MutexAfterLock(thr, (uptr)m, false, true); in INTERCEPTOR() 127 MutexAfterLock(thr, (uptr)m, false, true); in INTERCEPTOR() 135 MutexAfterLock(thr, (uptr)m, true, false); in INTERCEPTOR() 143 MutexAfterLock(thr, (uptr)m, true, true); in INTERCEPTOR() 152 MutexAfterLock(thr, (uptr)m, true, true); in INTERCEPTOR() [all …]
|
D | dd_rtl.cc | 125 void MutexAfterLock(Thread *thr, uptr m, bool writelock, bool trylock) { in MutexAfterLock() function 133 ctx->dd->MutexAfterLock(&cb, &h->dd, writelock, trylock); in MutexAfterLock()
|
D | dd_rtl.h | 62 void MutexAfterLock(Thread *thr, uptr m, bool writelock, bool trylock);
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_deadlock_detector1.cc | 51 void MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, 153 void DD::MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, bool trylock) { in MutexAfterLock() function in __sanitizer::DD
|
D | sanitizer_deadlock_detector_interface.h | 83 virtual void MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, in MutexAfterLock() function
|
D | sanitizer_deadlock_detector2.cc | 95 void MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, 273 void DD::MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, in MutexAfterLock() function in __sanitizer::DD
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_deadlock_detector1.cpp | 50 void MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, 152 void DD::MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, bool trylock) { in MutexAfterLock() function in __sanitizer::DD
|
D | sanitizer_deadlock_detector_interface.h | 85 virtual void MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, in MutexAfterLock() function
|
D | sanitizer_deadlock_detector2.cpp | 94 void MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, 268 void DD::MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, in MutexAfterLock() function in __sanitizer::DD
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_rtl_mutex.cc | 176 ctx->dd->MutexAfterLock(&cb, &s->dd, true, try_lock); in MutexLock() 254 ctx->dd->MutexAfterLock(&cb, &s->dd, false, trylock); in MutexReadLock()
|
/external/llvm-project/compiler-rt/lib/tsan/rtl/ |
D | tsan_rtl_mutex.cpp | 199 ctx->dd->MutexAfterLock(&cb, &s->dd, true, flagz & MutexFlagTryLock); in MutexPostLock() 294 ctx->dd->MutexAfterLock(&cb, &s->dd, false, flagz & MutexFlagTryLock); in MutexPostReadLock()
|