| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/FreeBSDKernel/tools/ |
| H A D | lldb-minimize-processes.patch | 14 @@ -185,6 +187,7 @@ bool ProcessFreeBSDKernel::DoUpdateThreadList(ThreadList &old_thread_list, 22 @@ -195,6 +198,8 @@ bool ProcessFreeBSDKernel::DoUpdateThreadList(ThreadList &old_thread_list, 31 @@ -231,6 +236,7 @@ bool ProcessFreeBSDKernel::DoUpdateThreadList(ThreadList &old_thread_list, 39 @@ -239,13 +245,27 @@ bool ProcessFreeBSDKernel::DoUpdateThreadList(ThreadList &old_thread_list, 65 const uint32_t num_threads = old_thread_list.GetSize(false);
|
| /llvm-project-15.0.7/lldb/source/Plugins/OperatingSystem/Python/ |
| H A D | OperatingSystemPython.h | 47 bool UpdateThreadList(lldb_private::ThreadList &old_thread_list, 71 lldb_private::ThreadList &old_thread_list,
|
| H A D | OperatingSystemPython.cpp | 139 bool OperatingSystemPython::UpdateThreadList(ThreadList &old_thread_list, in UpdateThreadList() argument 193 *thread_dict, core_thread_list, old_thread_list, core_used_map, in UpdateThreadList() 218 ThreadList &old_thread_list, std::vector<bool> &core_used_map, in CreateThreadFromThreadInfo() argument 237 thread_sp = old_thread_list.FindThreadByID(tid, false); in CreateThreadFromThreadInfo()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSDKernel/ |
| H A D | ProcessFreeBSDKernel.cpp | 122 bool ProcessFreeBSDKernel::DoUpdateThreadList(ThreadList &old_thread_list, in DoUpdateThreadList() argument 124 if (old_thread_list.GetSize(false) == 0) { in DoUpdateThreadList() 250 const uint32_t num_threads = old_thread_list.GetSize(false); in DoUpdateThreadList() 252 new_thread_list.AddThread(old_thread_list.GetThreadAtIndex(i, false)); in DoUpdateThreadList()
|
| H A D | ProcessFreeBSDKernel.h | 47 bool DoUpdateThreadList(lldb_private::ThreadList &old_thread_list,
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | OperatingSystem.h | 46 virtual bool UpdateThreadList(ThreadList &old_thread_list,
|
| H A D | ProcessTrace.h | 71 bool DoUpdateThreadList(ThreadList &old_thread_list,
|
| H A D | Process.h | 2068 bool UpdateThreadList(ThreadList &old_thread_list, 2573 virtual bool DoUpdateThreadList(ThreadList &old_thread_list,
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/mach-core/ |
| H A D | ProcessMachCore.cpp | 579 bool ProcessMachCore::DoUpdateThreadList(ThreadList &old_thread_list, in DoUpdateThreadList() argument 581 if (old_thread_list.GetSize(false) == 0) { in DoUpdateThreadList() 594 const uint32_t num_threads = old_thread_list.GetSize(false); in DoUpdateThreadList() 596 new_thread_list.AddThread(old_thread_list.GetThreadAtIndex(i, false)); in DoUpdateThreadList()
|
| H A D | ProcessMachCore.h | 78 bool DoUpdateThreadList(lldb_private::ThreadList &old_thread_list,
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | ProcessTrace.cpp | 73 bool ProcessTrace::DoUpdateThreadList(ThreadList &old_thread_list, in DoUpdateThreadList() argument
|
| H A D | Process.cpp | 1133 bool Process::UpdateThreadList(ThreadList &old_thread_list, in UpdateThreadList() argument 1136 return DoUpdateThreadList(old_thread_list, new_thread_list); in UpdateThreadList() 1152 ThreadList &old_thread_list = m_thread_list; in UpdateThreadListIfNeeded() local 1166 size_t num_old_threads = old_thread_list.GetSize(false); in UpdateThreadListIfNeeded() 1168 old_thread_list.GetThreadAtIndex(i, false)->ClearBackingThread(); in UpdateThreadListIfNeeded() 1188 old_thread_list, // Old list full of threads created by OS plug-in in UpdateThreadListIfNeeded()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/minidump/ |
| H A D | ProcessMinidump.h | 95 bool DoUpdateThreadList(ThreadList &old_thread_list,
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/scripted/ |
| H A D | ScriptedProcess.h | 100 bool DoUpdateThreadList(ThreadList &old_thread_list,
|
| H A D | ScriptedProcess.cpp | 283 bool ScriptedProcess::DoUpdateThreadList(ThreadList &old_thread_list, in DoUpdateThreadList() argument
|
| /llvm-project-15.0.7/lldb/unittests/Target/ |
| H A D | ExecutionContextTest.cpp | 61 bool DoUpdateThreadList(ThreadList &old_thread_list, in DoUpdateThreadList() argument
|
| /llvm-project-15.0.7/lldb/unittests/Thread/ |
| H A D | ThreadTest.cpp | 54 bool DoUpdateThreadList(ThreadList &old_thread_list, in DoUpdateThreadList() argument
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/elf-core/ |
| H A D | ProcessElfCore.h | 106 bool DoUpdateThreadList(lldb_private::ThreadList &old_thread_list,
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessWindows.h | 70 bool DoUpdateThreadList(ThreadList &old_thread_list,
|
| H A D | ProcessWindows.cpp | 522 bool ProcessWindows::DoUpdateThreadList(ThreadList &old_thread_list, in DoUpdateThreadList() argument 532 for (ThreadSP old_thread : old_thread_list.Threads()) { in DoUpdateThreadList()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | ProcessKDP.h | 159 bool DoUpdateThreadList(lldb_private::ThreadList &old_thread_list,
|
| H A D | ProcessKDP.cpp | 496 bool ProcessKDP::DoUpdateThreadList(ThreadList &old_thread_list, in DoUpdateThreadList() argument 505 old_thread_list.FindThreadByProtocolID(g_kernel_tid, false)); in DoUpdateThreadList()
|
| /llvm-project-15.0.7/lldb/unittests/Process/ |
| H A D | ProcessEventDataTest.cpp | 56 bool DoUpdateThreadList(ThreadList &old_thread_list, in DoUpdateThreadList() argument
|
| /llvm-project-15.0.7/lldb/unittests/Expression/ |
| H A D | DWARFExpressionTest.cpp | 339 bool DoUpdateThreadList(ThreadList &old_thread_list, in TEST_F()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.h | 315 bool DoUpdateThreadList(ThreadList &old_thread_list,
|