Home
last modified time | relevance | path

Searched refs:MutexAfterLock (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp53 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 …]
H A Ddd_rtl.cpp124 void MutexAfterLock(Thread *thr, uptr m, bool writelock, bool trylock) { in MutexAfterLock() function
132 ctx->dd->MutexAfterLock(&cb, &h->dd, writelock, trylock); in MutexAfterLock()
H A Ddd_rtl.h61 void MutexAfterLock(Thread *thr, uptr m, bool writelock, bool trylock);
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector1.cpp50 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
H A Dsanitizer_deadlock_detector_interface.h85 virtual void MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, in MutexAfterLock() function
H A Dsanitizer_deadlock_detector2.cpp94 void MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock,
266 void DD::MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock, in MutexAfterLock() function in __sanitizer::DD
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_mutex.cpp203 ctx->dd->MutexAfterLock(&cb, &s->dd, true, flagz & MutexFlagTryLock); in MutexPostLock()
311 ctx->dd->MutexAfterLock(&cb, &s->dd, false, flagz & MutexFlagTryLock); in MutexPostReadLock()