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.cc131 if (write && thr->ignore_reads_and_writes == 0) in OnUserAlloc()
141 if (write && thr->ignore_reads_and_writes == 0) in OnUserFree()
Dtsan_rtl.cc958 thr->ignore_reads_and_writes++; in ThreadIgnoreBegin()
959 CHECK_GT(thr->ignore_reads_and_writes, 0); in ThreadIgnoreBegin()
969 thr->ignore_reads_and_writes--; in ThreadIgnoreEnd()
970 CHECK_GE(thr->ignore_reads_and_writes, 0); in ThreadIgnoreEnd()
971 if (thr->ignore_reads_and_writes == 0) { in ThreadIgnoreEnd()
Dtsan_rtl_thread.cc200 if (thr->ignore_reads_and_writes) in ThreadCheckIgnore()
Dtsan_rtl.h346 int ignore_reads_and_writes; member