Home
last modified time | relevance | path

Searched refs:ignore_reads_and_writes (Results 1 – 5 of 5) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
Dtsan_mman.cc183 if (write && thr->ignore_reads_and_writes == 0) in OnUserAlloc()
193 if (write && thr->ignore_reads_and_writes == 0) in OnUserFree()
Dtsan_rtl.cc966 thr->ignore_reads_and_writes++; in ThreadIgnoreBegin()
967 CHECK_GT(thr->ignore_reads_and_writes, 0); in ThreadIgnoreBegin()
977 thr->ignore_reads_and_writes--; in ThreadIgnoreEnd()
978 CHECK_GE(thr->ignore_reads_and_writes, 0); in ThreadIgnoreEnd()
979 if (thr->ignore_reads_and_writes == 0) { in ThreadIgnoreEnd()
Dtsan_interceptors.cc700 if (thr->ignore_reads_and_writes == 0) in TSAN_INTERCEPTOR()
719 if (thr->ignore_reads_and_writes == 0) in TSAN_INTERCEPTOR()
1775 int ignore_reads_and_writes = thr->ignore_reads_and_writes; in CallUserSignalHandler() local
1779 thr->ignore_reads_and_writes = 0; in CallUserSignalHandler()
1800 thr->ignore_reads_and_writes = ignore_reads_and_writes; in CallUserSignalHandler()
1801 if (ignore_reads_and_writes) in CallUserSignalHandler()
Dtsan_rtl_thread.cc188 if (thr->ignore_reads_and_writes) in ThreadCheckIgnore()
Dtsan_rtl.h376 int ignore_reads_and_writes; member