Home
last modified time | relevance | path

Searched refs:UpdateThreadList (Results 1 – 8 of 8) sorted by relevance

/llvm-project/lldb/include/lldb/Target/
H A DOperatingSystem.h46 virtual bool UpdateThreadList(ThreadList &old_thread_list,
H A DProcess.h2177 bool UpdateThreadList(ThreadList &old_thread_list,
2758 /// This method should only be invoked by \a UpdateThreadList.
/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.h47 bool UpdateThreadList(lldb_private::ThreadList &old_thread_list,
H A DOperatingSystemPython.cpp164 bool OperatingSystemPython::UpdateThreadList(ThreadList &old_thread_list, in UpdateThreadList() function in OperatingSystemPython
173 "OperatingSystemPython::UpdateThreadList() fetching thread " in UpdateThreadList()
/llvm-project/lldb/tools/debugserver/source/MacOSX/
H A DMachThreadList.cpp256 MachThreadList::UpdateThreadList(MachProcess *process, bool update, in UpdateThreadList() function in MachThreadList
403 UpdateThreadList(process, true, &new_threads); in ProcessWillResume()
452 const uint32_t num_threads = UpdateThreadList(process, true); in ProcessDidStop()
H A DMachThreadList.h96 uint32_t UpdateThreadList(MachProcess *process, bool update,
/llvm-project/lldb/source/Target/
H A DProcess.cpp1146 bool Process::UpdateThreadList(ThreadList &old_thread_list, in SetProcessExitStatus()
1163 // mutex between the call to UpdateThreadList(...) and the in SetProcessExitStatus()
1164 // os->UpdateThreadList(...) so it doesn't change on us in SetProcessExitStatus()
1170 if (UpdateThreadList(m_thread_list_real, real_thread_list)) { in UpdateThreadList()
1200 os->UpdateThreadList( in UpdateThreadListIfNeeded()
1166 bool Process::UpdateThreadList(ThreadList &old_thread_list, UpdateThreadList() function in Process
/llvm-project/lldb/tools/debugserver/source/
H A DChangeLog406 * MacOSX/MachThreadList.cpp (MachThreadList::UpdateThreadList): Improved