Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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.h160 bool Resume(const DNBThreadResumeActions &thread_actions);
H A DMachProcess.mm1431 bool MachProcess::Resume(const DNBThreadResumeActions &thread_actions) {
1436 m_thread_actions = thread_actions;
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DRNBRemote.cpp3716 DNBThreadResumeActions thread_actions; in HandlePacket_v() local
3773 thread_actions.Append(thread_action); in HandlePacket_v()
3780 thread_actions.GetSize()); in HandlePacket_v()
4264 DNBThreadResumeActions thread_actions; in HandlePacket_c() local
4265 thread_actions.Append(action); in HandlePacket_c()
4268 thread_actions.GetSize())) in HandlePacket_c()
4546 DNBThreadResumeActions thread_actions; in HandlePacket_C() local
4547 thread_actions.Append(action); in HandlePacket_C()
4623 DNBThreadResumeActions thread_actions; in HandlePacket_s() local
4671 DNBThreadResumeActions thread_actions; in HandlePacket_S() local
[all …]
H A DDNB.cpp1077 DNBThreadResumeActions thread_actions(actions, num_actions); in DNBProcessResume() local
1081 if (thread_actions.IsEmpty()) { in DNBProcessResume()
1083 thread_actions.SetDefaultThreadActionIfNeeded(eStateRunning, 0); in DNBProcessResume()
1087 thread_actions.SetDefaultThreadActionIfNeeded(eStateStopped, 0); in DNBProcessResume()
1089 return procSP->Resume(thread_actions); in DNBProcessResume()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp1717 std::unordered_map<lldb::pid_t, ResumeActionList> thread_actions; in Handle_vCont() local
1803 thread_actions[pid].Append(thread_action); in Handle_vCont()
1806 assert(thread_actions.size() >= 1); in Handle_vCont()
1807 if (thread_actions.size() > 1) in Handle_vCont()
1811 for (std::pair<lldb::pid_t, ResumeActionList> x : thread_actions) { in Handle_vCont()
1847 assert(thread_actions.size() == 1); in Handle_vCont()