Home
last modified time | relevance | path

Searched refs:ignore_sync (Results 1 – 6 of 6) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_mutex.cc364 if (thr->ignore_sync) in Acquire()
384 if (thr->ignore_sync) in AcquireGlobal()
393 if (thr->ignore_sync) in Release()
405 if (thr->ignore_sync) in ReleaseStore()
427 if (thr->ignore_sync) in AfterSleep()
437 if (thr->ignore_sync) in AcquireImpl()
445 if (thr->ignore_sync) in ReleaseImpl()
454 if (thr->ignore_sync) in ReleaseStoreImpl()
463 if (thr->ignore_sync) in AcquireReleaseImpl()
Dtsan_rtl.cc989 thr->ignore_sync++; in ThreadIgnoreSyncBegin()
990 CHECK_GT(thr->ignore_sync, 0); in ThreadIgnoreSyncBegin()
999 thr->ignore_sync--; in ThreadIgnoreSyncEnd()
1000 CHECK_GE(thr->ignore_sync, 0); in ThreadIgnoreSyncEnd()
1002 if (thr->ignore_sync == 0) in ThreadIgnoreSyncEnd()
Dtsan_interceptors.cc1777 int ignore_sync = thr->ignore_sync; in CallUserSignalHandler() local
1782 thr->ignore_sync = 0; in CallUserSignalHandler()
1804 thr->ignore_sync = ignore_sync; in CallUserSignalHandler()
Dtsan_rtl_thread.cc190 if (thr->ignore_sync) in ThreadCheckIgnore()
Dtsan_interface_atomic.cc853 if (thr->ignore_sync) { \
863 if (thr->ignore_sync) { \
Dtsan_rtl.h377 int ignore_sync; member