Searched refs:thread_actions (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/ |
| H A D | MachThreadList.cpp | 375 MachProcess *process, const DNBThreadResumeActions &thread_actions) { in ProcessWillResume() argument 386 if (thread_actions.GetSize() > 0 && in ProcessWillResume() 387 thread_actions.NumActionsWithState(eStateStepping) + in ProcessWillResume() 388 thread_actions.NumActionsWithState(eStateRunning) == in ProcessWillResume() 391 const DNBThreadResumeAction *action_ptr = thread_actions.GetFirst(); in ProcessWillResume() 392 size_t num_actions = thread_actions.GetSize(); in ProcessWillResume() 427 thread_actions.GetActionForThread(thread->ThreadID(), true); in ProcessWillResume()
|
| H A D | MachThreadList.h | 39 const DNBThreadResumeActions &thread_actions);
|
| H A D | MachProcess.h | 161 bool Resume(const DNBThreadResumeActions &thread_actions);
|
| H A D | MachProcess.mm | 1437 bool MachProcess::Resume(const DNBThreadResumeActions &thread_actions) { 1442 m_thread_actions = thread_actions;
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/ |
| H A D | RNBRemote.cpp | 3720 DNBThreadResumeActions thread_actions; in HandlePacket_v() local 3777 thread_actions.Append(thread_action); in HandlePacket_v() 3782 thread_actions.SetDefaultThreadActionIfNeeded(eStateStopped, 0); in HandlePacket_v() 3783 DNBProcessResume(m_ctx.ProcessID(), thread_actions.GetFirst(), in HandlePacket_v() 3784 thread_actions.GetSize()); in HandlePacket_v() 4268 DNBThreadResumeActions thread_actions; in HandlePacket_c() local 4269 thread_actions.Append(action); in HandlePacket_c() 4270 thread_actions.SetDefaultThreadActionIfNeeded(eStateRunning, 0); in HandlePacket_c() 4271 if (!DNBProcessResume(pid, thread_actions.GetFirst(), in HandlePacket_c() 4272 thread_actions.GetSize())) in HandlePacket_c() [all …]
|
| H A D | DNB.cpp | 1085 DNBThreadResumeActions thread_actions(actions, num_actions); in DNBProcessResume() local 1089 if (thread_actions.IsEmpty()) { in DNBProcessResume() 1091 thread_actions.SetDefaultThreadActionIfNeeded(eStateRunning, 0); in DNBProcessResume() 1095 thread_actions.SetDefaultThreadActionIfNeeded(eStateStopped, 0); in DNBProcessResume() 1097 return procSP->Resume(thread_actions); in DNBProcessResume()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerLLGS.cpp | 1715 std::unordered_map<lldb::pid_t, ResumeActionList> thread_actions; in Handle_vCont() local 1805 thread_actions[process_it.first].Append(thread_action); in Handle_vCont() 1807 thread_actions[pid].Append(thread_action); in Handle_vCont() 1810 assert(thread_actions.size() >= 1); in Handle_vCont() 1811 if (thread_actions.size() > 1 && !m_non_stop) in Handle_vCont() 1816 for (std::pair<lldb::pid_t, ResumeActionList> x : thread_actions) { in Handle_vCont() 1852 assert(thread_actions.size() == 1); in Handle_vCont()
|