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

/freebsd-10-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-10-stable/contrib/llvm/tools/lldb/source/API/
H A DSBQueue.cpp146 const std::vector<ThreadSP> thread_list(queue_sp->GetThreads());
148 const uint32_t num_threads = thread_list.size();
151 ThreadSP thread_sp = thread_list[idx];
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp425 ThreadList &thread_list = m_process->GetThreadList(); local
427 ThreadSP thread_sp (CreateThreadFromThreadInfo (thread_info_dict, core_threads, thread_list, core_used_map, &did_create));
429 thread_list.AddThread(thread_sp);
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Dittnotify_config.h350 __itt_thread_info* thread_list; member in struct:___itt_global
369 (gptr)->thread_list = h; \
386 (gptr)->thread_list = h; \
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
H A DDebugger.cpp2866 ThreadList &thread_list = process_sp->GetThreadList(); local
2867 Mutex::Locker locker (thread_list.GetMutex());
2869 ThreadSP curr_thread (thread_list.GetSelectedThread());
2882 const size_t num_threads = thread_list.GetSize();
2886 thread = thread_list.GetThreadAtIndex(i);
2911 thread_list.SetSelectedThreadByID (plan_thread->GetID());
2913 thread_list.SetSelectedThreadByID (other_thread->GetID());
2919 thread = thread_list.GetThreadAtIndex(0);
2922 thread_list.SetSelectedThreadByID (thread->GetID());
H A DIOHandler.cpp3154 ThreadList &thread_list = thread_sp->GetProcess()->GetThreadList(); local
3155 Mutex::Locker locker (thread_list.GetMutex());
3156 ThreadSP selected_thread_sp = thread_list.GetSelectedThread();
3159 thread_list.SetSelectedThreadByID(thread_sp->GetID());
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp5619 ThreadList &thread_list = process->GetThreadList();
5621 uint32_t num_threads = thread_list.GetSize();
5630 Thread *thread = thread_list.GetThreadAtIndex(thread_index).get();

Completed in 1148 milliseconds