Home
last modified time | relevance | path

Searched refs:thread_actions (Results 1 – 7 of 7) sorted by relevance

/openbsd/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachThreadList.cpp375 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 DMachThreadList.h39 const DNBThreadResumeActions &thread_actions);
H A DMachProcess.h161 bool Resume(const DNBThreadResumeActions &thread_actions);
H A DMachProcess.mm1437 bool MachProcess::Resume(const DNBThreadResumeActions &thread_actions) {
1442 m_thread_actions = thread_actions;
/openbsd/gnu/llvm/lldb/tools/debugserver/source/
H A DRNBRemote.cpp3720 DNBThreadResumeActions thread_actions; in HandlePacket_v() local
3777 thread_actions.Append(thread_action); 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()
4272 thread_actions.GetSize())) in HandlePacket_c()
4550 DNBThreadResumeActions thread_actions; in HandlePacket_C() local
4551 thread_actions.Append(action); in HandlePacket_C()
4627 DNBThreadResumeActions thread_actions; in HandlePacket_s() local
4675 DNBThreadResumeActions thread_actions; in HandlePacket_S() local
[all …]
H A DDNB.cpp1085 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/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp1715 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()