Searched refs:thread_list (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/contrib/gdb/gdb/
H A Dthread.c54 static struct thread_info *thread_list = NULL; variable in typeref:struct:thread_info
77 for (tp = thread_list; tp; tp = tp->next)
107 if (!thread_list)
110 for (tp = thread_list; tp; tp = tpnext)
116 thread_list = NULL;
131 tp->next = thread_list;
132 thread_list = tp;
143 for (tp = thread_list; tp; tpprev = tp, tp = tp->next)
153 thread_list = tp->next;
163 for (tp = thread_list; t
[all...]
H A Dprocfs.c389 struct procinfo *thread_list; member in struct:procinfo
441 thread_list, we want to find whatever threads are already
447 for (pi = pi->thread_list; pi; pi = pi->next)
722 pi->next = parent->thread_list;
723 parent->thread_list = pi;
790 destroy_one_procinfo (&tmp->thread_list, pi);
795 while (pi->thread_list != NULL)
796 destroy_one_procinfo (&pi->thread_list, pi->thread_list);
3156 destroy_one_procinfo (&parent->thread_list, threa
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadList.h49 ExpressionExecutionThreadPusher(ThreadList &thread_list, lldb::tid_t tid) argument
50 : m_thread_list(&thread_list), m_tid(tid) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBQueue.cpp100 const std::vector<ThreadSP> thread_list(queue_sp->GetThreads());
102 const uint32_t num_threads = thread_list.size();
104 ThreadSP thread_sp = thread_list[idx];
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp407 ThreadList &thread_list = m_process->GetThreadList(); local
411 thread_list, core_used_map, &did_create));
413 thread_list.AddThread(thread_sp);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/
H A DNativeThreadListDarwin.cpp341 thread_array_t thread_list = nullptr; local
346 auto mach_err = ::task_threads(task, &thread_list, &thread_list_count);
350 "::task_threads(task = 0x%4.4x, thread_list => %p, "
352 task, thread_list, thread_list_count, error.GetError(),
365 const ::thread_t mach_port_num = thread_list[idx];
402 ::vm_deallocate(::mach_task_self(), (vm_address_t)thread_list,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Dittnotify_config.h349 __itt_thread_info* thread_list; member in struct:___itt_global
368 (gptr)->thread_list = h; \
385 (gptr)->thread_list = h; \
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan.cpp155 HwasanThreadList &thread_list = hwasanThreadList(); local
156 auto thread_stats = thread_list.GetThreadStats();
166 thread_stats.n_live_threads * thread_list.MemoryUsedPerThread(),
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/
H A Dittnotify_config.h456 __itt_thread_info* thread_list; member in struct:___itt_global
476 (gptr)->thread_list = h; \
493 (gptr)->thread_list = h; \
H A Dittnotify_static.cpp243 NULL, /* thread_list */
589 if (!_N_(_ittapi_global).api_initialized && _N_(_ittapi_global).thread_list == NULL)
605 if (!_N_(_ittapi_global).api_initialized && _N_(_ittapi_global).thread_list == NULL)
622 if (!_N_(_ittapi_global).api_initialized && _N_(_ittapi_global).thread_list == NULL)
644 if (!_N_(_ittapi_global).api_initialized && _N_(_ittapi_global).thread_list == NULL)
679 if (!_N_(_ittapi_global).api_initialized && _N_(_ittapi_global).thread_list == NULL)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp859 ThreadList &thread_list = process_sp->GetThreadList(); local
860 std::lock_guard<std::recursive_mutex> guard(thread_list.GetMutex());
862 ThreadSP curr_thread(thread_list.GetSelectedThread());
877 const size_t num_threads = thread_list.GetSize();
880 thread = thread_list.GetThreadAtIndex(i);
915 thread_list.SetSelectedThreadByID(plan_thread->GetID());
917 thread_list.SetSelectedThreadByID(other_thread->GetID());
922 thread = thread_list.GetThreadAtIndex(0);
925 thread_list.SetSelectedThreadByID(thread->GetID());
5259 ThreadList &thread_list
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp1658 HistoryThreads thread_list = memory_history->GetHistoryThreads(addr); variable
1661 for (auto thread : thread_list) {
H A DCommandObjectTarget.cpp2817 ThreadList &thread_list = process->GetThreadList(); variable
2819 thread_list.GetSelectedThread()->GetRegisterContext());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp1954 ThreadList &thread_list = thread_sp->GetProcess()->GetThreadList(); variable
1955 std::lock_guard<std::recursive_mutex> guard(thread_list.GetMutex());
1956 ThreadSP selected_thread_sp = thread_list.GetSelectedThread();
1958 thread_list.SetSelectedThreadByID(thread_sp->GetID());

Completed in 307 milliseconds