Home
last modified time | relevance | path

Searched refs:current_tid (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/openmp/runtime/test/tasking/
Domp_taskyield.c12 int current_tid[NUM_TASKS]; in test_omp_taskyield() local
16 current_tid[i]=0; in test_omp_taskyield()
32 current_tid[myi] = omp_get_thread_num(); in test_omp_taskyield()
41 if (current_tid[i] == start_tid[i]) in test_omp_taskyield()
/external/llvm-project/lldb/test/API/functionalities/thread_plan/
DTestThreadPlanCommands.py101 current_tid = threads[0].GetThreadID()
111 command = "thread plan list -t %d"%(current_tid)
115 command = "thread plan list -t %d %d"%(current_tid, current_id)
121 fake_tid = current_tid + i
/external/compiler-rt/lib/asan/
Dasan_win.cc111 u32 current_tid = GetCurrentTidOrInvalid(); in INTERCEPTOR_WINAPI() local
113 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
Dasan_interceptors.cc264 u32 current_tid = GetCurrentTidOrInvalid(); in INTERCEPTOR() local
266 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR()
Dasan_report.cc643 u32 current_tid = GetCurrentTidOrInvalid(); in ScopedInErrorReport() local
644 if (reporting_thread_tid_ == current_tid || in ScopedInErrorReport()
/external/llvm-project/compiler-rt/lib/asan/
Dasan_win.cpp150 u32 current_tid = GetCurrentTidOrInvalid(); in INTERCEPTOR_WINAPI() local
152 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
Dasan_interceptors.cpp233 u32 current_tid = GetCurrentTidOrInvalid(); in INTERCEPTOR() local
235 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR()
/external/llvm-project/compiler-rt/lib/memprof/
Dmemprof_interceptors.cpp178 u32 current_tid = GetCurrentTidOrInvalid(); in INTERCEPTOR() local
179 MemprofThread *t = MemprofThread::Create(start_routine, arg, current_tid, in INTERCEPTOR()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServerLLGS.cpp3405 const lldb::tid_t current_tid = GetCurrentThreadID(); in GetThreadFromSuffix() local
3406 if (current_tid == LLDB_INVALID_THREAD_ID) in GetThreadFromSuffix()
3408 else if (current_tid == 0) { in GetThreadFromSuffix()
3412 return m_debugged_process_up->GetThreadByID(current_tid); in GetThreadFromSuffix()