Home
last modified time | relevance | path

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

/external/compiler-rt/lib/tsan/rtl/
Dtsan_mman.cc112 if (write && thr->ignore_reads_and_writes == 0) in OnUserAlloc()
122 if (write && thr->ignore_reads_and_writes == 0) in OnUserFree()
Dtsan_rtl.cc944 thr->ignore_reads_and_writes++; in ThreadIgnoreBegin()
945 CHECK_GT(thr->ignore_reads_and_writes, 0); in ThreadIgnoreBegin()
955 thr->ignore_reads_and_writes--; in ThreadIgnoreEnd()
956 CHECK_GE(thr->ignore_reads_and_writes, 0); in ThreadIgnoreEnd()
957 if (thr->ignore_reads_and_writes == 0) { in ThreadIgnoreEnd()
Dtsan_rtl_thread.cc198 if (thr->ignore_reads_and_writes) in ThreadCheckIgnore()
Dtsan_rtl.h345 int ignore_reads_and_writes; member