OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MutexBeforeUnlock
(Results
1 - 7
of
7
) sorted by null
/external/compiler-rt/lib/tsan/dd/
dd_rtl.h
63
void
MutexBeforeUnlock
(Thread *thr, uptr m, bool writelock);
dd_interceptors.cc
67
MutexBeforeUnlock
(thr, (uptr)m, true);
96
MutexBeforeUnlock
(thr, (uptr)m, true);
158
MutexBeforeUnlock
(thr, (uptr)m, true); // note: not necessary write unlock
186
MutexBeforeUnlock
(thr, (uptr)m, true);
197
MutexBeforeUnlock
(thr, (uptr)m, true);
257
MutexBeforeUnlock
(thr, m, writelock);
dd_rtl.cc
138
void
MutexBeforeUnlock
(Thread *thr, uptr m, bool writelock) {
144
ctx->dd->
MutexBeforeUnlock
(&cb, &h->dd, writelock);
/external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector_interface.h
85
virtual void
MutexBeforeUnlock
(DDCallback *cb, DDMutex *m, bool wlock) {}
sanitizer_deadlock_detector1.cc
53
void
MutexBeforeUnlock
(DDCallback *cb, DDMutex *m, bool wlock) override;
173
void DD::
MutexBeforeUnlock
(DDCallback *cb, DDMutex *m, bool wlock) {
sanitizer_deadlock_detector2.cc
97
void
MutexBeforeUnlock
(DDCallback *cb, DDMutex *m, bool wlock);
306
void DD::
MutexBeforeUnlock
(DDCallback *cb, DDMutex *m, bool wlock) {
307
VPrintf(2, "#%llu: DD::
MutexBeforeUnlock
(%p, wlock=%d) nlocked=%d\n",
313
VPrintf(3, "#%llu: DD::
MutexBeforeUnlock
recursive\n", cb->lt->ctx);
316
VPrintf(3, "#%llu: DD::
MutexBeforeUnlock
reset owner\n", cb->lt->ctx);
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl_mutex.cc
218
ctx->dd->
MutexBeforeUnlock
(&cb, &s->dd, true);
285
ctx->dd->
MutexBeforeUnlock
(&cb, &s->dd, false);
333
ctx->dd->
MutexBeforeUnlock
(&cb, &s->dd, write);
Completed in 183 milliseconds