/external/compiler-rt/lib/tsan/rtl/ |
tsan_interface.cc | 23 Initialize(cur_thread()); 27 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog8); 28 MemoryRead(cur_thread(), CALLERPC, (uptr)addr + 8, kSizeLog8); 32 MemoryWrite(cur_thread(), CALLERPC, (uptr)addr, kSizeLog8); 33 MemoryWrite(cur_thread(), CALLERPC, (uptr)addr + 8, kSizeLog8); 37 Acquire(cur_thread(), CALLERPC, (uptr)addr); 41 Release(cur_thread(), CALLERPC, (uptr)addr);
|
tsan_interface_inl.h | 22 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog1); 26 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog2); 30 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog4); 34 MemoryRead(cur_thread(), CALLERPC, (uptr)addr, kSizeLog8); 38 MemoryWrite(cur_thread(), CALLERPC, (uptr)addr, kSizeLog1); 42 MemoryWrite(cur_thread(), CALLERPC, (uptr)addr, kSizeLog2); 46 MemoryWrite(cur_thread(), CALLERPC, (uptr)addr, kSizeLog4); 50 MemoryWrite(cur_thread(), CALLERPC, (uptr)addr, kSizeLog8); 56 MemoryWrite(cur_thread(), CALLERPC, (uptr)vptr_p, kSizeLog8); 60 FuncEntry(cur_thread(), (uptr)pc) [all...] |
tsan_mutex.cc | 213 cur_thread()->deadlock_detector.Lock(type_); 225 StatInc(cur_thread(), stat_type_, backoff.Contention()); 238 cur_thread()->deadlock_detector.Unlock(type_); 244 cur_thread()->deadlock_detector.Lock(type_); 253 StatInc(cur_thread(), stat_type_, backoff.Contention()); 266 cur_thread()->deadlock_detector.Unlock(type_);
|
tsan_mman.cc | 176 ThreadState *thr = cur_thread(); 184 ThreadState *thr = cur_thread(); 191 ThreadState *thr = cur_thread(); 201 ThreadState *thr = cur_thread(); 258 ThreadState *thr = cur_thread();
|
tsan_symbolize.cc | 27 ThreadState *thr = cur_thread(); 33 ThreadState *thr = cur_thread();
|
tsan_interface_ann.cc | 55 ThreadState *thr = cur_thread(); \ 165 Release(cur_thread(), CALLERPC, addr); 170 Acquire(cur_thread(), CALLERPC, addr); 326 IgnoreCtl(cur_thread(), false, true); 331 IgnoreCtl(cur_thread(), false, false); 336 IgnoreCtl(cur_thread(), true, true);
|
tsan_interceptors.cc | 174 ThreadState *thr = cur_thread(); \ 295 ThreadState * thr = cur_thread(); 298 int status = Finalize(cur_thread()); 304 if (cur_thread()->in_symbolizer) 311 if (cur_thread()->in_symbolizer) 318 if (cur_thread()->in_symbolizer) 339 if (cur_thread()->in_symbolizer) 356 if (cur_thread()->in_symbolizer) 370 if (cur_thread()->in_symbolizer) 385 if (cur_thread()->in_symbolizer [all...] |
tsan_interface_java.cc | 43 ThreadState *thr = cur_thread(); 158 ThreadState *thr = cur_thread(); \
|
tsan_rtl.cc | 313 TraceSwitch(cur_thread()); 317 ReportRace(cur_thread());
|
tsan_platform_linux.cc | 54 : thr_(cur_thread()) {
|
tsan_rtl.h | 456 INLINE ThreadState *cur_thread() { function in namespace:__tsan
|
tsan_interface_atomic.cc | 36 ThreadState *const thr = cur_thread(); \
|
/external/compiler-rt/lib/tsan/tests/unit/ |
tsan_mman_test.cc | 49 ThreadState *thr = cur_thread(); 76 ThreadState *thr = cur_thread(); 122 ThreadState *thr = cur_thread(); 135 ThreadState *thr = cur_thread();
|
tsan_sync_test.cc | 29 ThreadState *thr = cur_thread();
|
/external/qemu/memcheck/ |
memcheck_proc_management.c | 339 const ThreadDesc* cur_thread = get_current_thread(); local 340 if (cur_thread != NULL) { 341 current_process = cur_thread->process;
|