Home
last modified time | relevance | path

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

/llvm-project-15.0.7/openmp/runtime/test/tasking/
H A 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()
/llvm-project-15.0.7/lldb/test/API/functionalities/thread_plan/
H A DTestThreadPlanCommands.py99 current_tid = threads[0].GetThreadID()
109 command = "thread plan list -t %d"%(current_tid)
113 command = "thread plan list -t %d %d"%(current_tid, current_id)
119 fake_tid = current_tid + i
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_win.cpp150 u32 current_tid = GetCurrentTidOrInvalid(); in INTERCEPTOR_WINAPI() local
152 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
H A Dasan_interceptors.cpp213 u32 current_tid = GetCurrentTidOrInvalid(); in INTERCEPTOR() local
215 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR()
/llvm-project-15.0.7/compiler-rt/lib/memprof/
H A Dmemprof_interceptors.cpp176 u32 current_tid = GetCurrentTidOrInvalid(); in INTERCEPTOR() local
177 MemprofThread *t = MemprofThread::Create(start_routine, arg, current_tid, in INTERCEPTOR()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp4077 const lldb::tid_t current_tid = GetCurrentThreadID(); in GetThreadFromSuffix() local
4078 if (current_tid == LLDB_INVALID_THREAD_ID) in GetThreadFromSuffix()
4080 else if (current_tid == 0) { in GetThreadFromSuffix()
4084 return m_current_process->GetThreadByID(current_tid); in GetThreadFromSuffix()