Searched refs:thr_ (Results 1 – 4 of 4) sorted by relevance
/external/compiler-rt/lib/tsan/rtl/ |
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_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_atomic.cc | 492 : thr_(thr) { in ScopedAtomic() 493 FuncEntry(thr_, pc); in ScopedAtomic() 494 DPrintf("#%d: %s(%p, %d)\n", thr_->tid, func, a, mo); in ScopedAtomic() 497 ProcessPendingSignals(thr_); in ~ScopedAtomic() 498 FuncExit(thr_); in ~ScopedAtomic() 501 ThreadState *thr_; member in ScopedAtomic
|
D | tsan_interceptors.cc | 220 ThreadState *const thr_; member in ScopedInterceptor 227 : thr_(thr) in ScopedInterceptor() 230 if (!thr_->ignore_interceptors) { in ScopedInterceptor() 234 DPrintf("#%d: intercept %s()\n", thr_->tid, fname); in ScopedInterceptor() 235 if (!thr_->in_ignored_lib && libignore()->IsIgnored(pc)) { in ScopedInterceptor() 237 thr_->in_ignored_lib = true; in ScopedInterceptor() 238 ThreadIgnoreBegin(thr_, pc_); in ScopedInterceptor() 244 thr_->in_ignored_lib = false; in ~ScopedInterceptor() 245 ThreadIgnoreEnd(thr_, pc_); in ~ScopedInterceptor() 247 if (!thr_->ignore_interceptors) { in ~ScopedInterceptor() [all …]
|