Home
last modified time | relevance | path

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

/external/compiler-rt/lib/tsan/rtl/
Dtsan_interface_java.cc42 : thr_(thr) { in ScopedJavaFunc()
43 Initialize(thr_); in ScopedJavaFunc()
48 FuncExit(thr_); in ~ScopedJavaFunc()
53 ThreadState *thr_; member in __tsan::ScopedJavaFunc
Dtsan_interface_ann.cc36 : 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
Dtsan_interface_atomic.cc73 : 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
Dtsan_interceptors.cc164 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 …]