Searched refs:thr_ (Results 1 – 4 of 4) sorted by relevance
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_interface_java.cc | 42 : thr_(thr) { in ScopedJavaFunc() 43 Initialize(thr_); in ScopedJavaFunc() 48 FuncExit(thr_); in ~ScopedJavaFunc() 53 ThreadState *thr_; member in __tsan::ScopedJavaFunc
|
D | tsan_interface_ann.cc | 36 : thr_(thr) { in ScopedAnnotation() 37 FuncEntry(thr_, pc); in ScopedAnnotation() 38 DPrintf("#%d: annotation %s() %s:%d\n", thr_->tid, aname, f, l); in ScopedAnnotation() 42 FuncExit(thr_); in ~ScopedAnnotation() 43 CheckNoLocks(thr_); in ~ScopedAnnotation() 46 ThreadState *const thr_; member in __tsan::ScopedAnnotation
|
D | tsan_interface_atomic.cc | 73 : thr_(thr) { in ScopedAtomic() 74 FuncEntry(thr_, pc); in ScopedAtomic() 75 DPrintf("#%d: %s(%p, %d)\n", thr_->tid, func, a, mo); in ScopedAtomic() 78 ProcessPendingSignals(thr_); in ~ScopedAtomic() 79 FuncExit(thr_); in ~ScopedAtomic() 82 ThreadState *thr_; member in ScopedAtomic
|
D | tsan_interceptors.cc | 164 ThreadState *const thr_; member in ScopedInterceptor 171 : thr_(thr) in ScopedInterceptor() 174 if (!thr_->ignore_interceptors) { in ScopedInterceptor() 178 DPrintf("#%d: intercept %s()\n", thr_->tid, fname); in ScopedInterceptor() 179 if (!thr_->in_ignored_lib && libignore()->IsIgnored(pc)) { in ScopedInterceptor() 181 thr_->in_ignored_lib = true; in ScopedInterceptor() 182 ThreadIgnoreBegin(thr_, pc_); in ScopedInterceptor() 188 thr_->in_ignored_lib = false; in ~ScopedInterceptor() 189 ThreadIgnoreEnd(thr_, pc_); in ~ScopedInterceptor() 191 if (!thr_->ignore_interceptors) { in ~ScopedInterceptor() [all …]
|