Searched refs:new_thread_list (Results 1 - 19 of 19) sorted by relevance

/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp126 ProcessFreeBSD::UpdateThreadList(ThreadList &old_thread_list, ThreadList &new_thread_list) argument
129 new_thread_list = old_thread_list;
H A DProcessFreeBSD.h58 UpdateThreadList(lldb_private::ThreadList &old_thread_list, lldb_private::ThreadList &new_thread_list);
/external/lldb/source/Plugins/Process/Linux/
H A DProcessLinux.cpp100 ProcessLinux::UpdateThreadList(ThreadList &old_thread_list, ThreadList &new_thread_list) argument
102 new_thread_list = old_thread_list;
103 return new_thread_list.GetSize(false) > 0;
H A DProcessLinux.h58 UpdateThreadList(lldb_private::ThreadList &old_thread_list, lldb_private::ThreadList &new_thread_list);
/external/lldb/include/lldb/Target/
H A DOperatingSystem.h70 ThreadList &new_thread_list) = 0;
H A DProcess.h3279 UpdateThreadList (ThreadList &old_thread_list, ThreadList &new_thread_list) = 0;
/external/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.h67 lldb_private::ThreadList &new_thread_list);
H A DOperatingSystemPython.cpp172 ThreadList &new_thread_list)
188 // The threads that are in "new_thread_list" upon entry are the threads from the
212 new_thread_list.AddThread(thread_sp);
220 if (new_thread_list.GetSize(false) == 0)
221 new_thread_list = core_thread_list;
223 return new_thread_list.GetSize(false) > 0;
170 UpdateThreadList(ThreadList &old_thread_list, ThreadList &core_thread_list, ThreadList &new_thread_list) argument
/external/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.h131 lldb_private::ThreadList &new_thread_list);
H A DProcessElfCore.cpp225 ProcessElfCore::UpdateThreadList (ThreadList &old_thread_list, ThreadList &new_thread_list) argument
235 new_thread_list.AddThread (thread_sp);
237 return new_thread_list.GetSize(false) > 0;
/external/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp341 ProcessMachCore::UpdateThreadList (ThreadList &old_thread_list, ThreadList &new_thread_list) argument
355 new_thread_list.AddThread (thread_sp);
363 new_thread_list.AddThread (old_thread_list.GetThreadAtIndex (i));
365 return new_thread_list.GetSize(false) > 0;
H A DProcessMachCore.h122 lldb_private::ThreadList &new_thread_list);
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.h234 lldb_private::ThreadList &new_thread_list);
H A DProcessKDP.cpp538 ProcessKDP::UpdateThreadList (ThreadList &old_thread_list, ThreadList &new_thread_list) argument
550 new_thread_list.AddThread(thread_sp);
552 return new_thread_list.GetSize(false) > 0;
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIX.h133 lldb_private::ThreadList &new_thread_list) = 0;
H A DProcessPOSIX.cpp816 ProcessPOSIX::UpdateThreadList(ThreadList &old_thread_list, ThreadList &new_thread_list) argument
832 new_thread_list.AddThread(thread_sp);
834 return new_thread_list.GetSize(false) > 0;
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h277 lldb_private::ThreadList &new_thread_list);
H A DProcessGDBRemote.cpp1352 ProcessGDBRemote::UpdateThreadList (ThreadList &old_thread_list, ThreadList &new_thread_list) argument
1395 new_thread_list.AddThread(thread_sp);
1400 // present in new_thread_list. Remove non-existent threads from internal id table.
/external/lldb/source/Target/
H A DProcess.cpp1536 ThreadList new_thread_list(this);
1558 new_thread_list); // The new thread list that we will show to the user that gets filled in
1563 new_thread_list = real_thread_list;
1568 m_thread_list.Update (new_thread_list);

Completed in 2649 milliseconds