Searched refs:resume_state (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadPlanBase.h58 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanStepOverBreakpoint.h49 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanStepOverRange.h41 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanStepThrough.h38 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanStepUntil.h36 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanStepInRange.h70 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanStepOut.h62 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DStopInfo.h100 WillResume (lldb::StateType resume_state) argument
H A DThreadPlan.h384 WillResume (lldb::StateType resume_state, bool current_plan);
573 DoWillResume (lldb::StateType resume_state, bool current_plan) { return true; } argument
H A DThread.h264 ShouldResume (lldb::StateType resume_state);
268 WillResume (lldb::StateType resume_state) argument
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DThreadMemory.cpp58 ThreadMemory::WillResume (StateType resume_state) argument
61 m_backing_thread_sp->WillResume(resume_state);
H A DThreadMemory.h75 WillResume(lldb::StateType resume_state) override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.cpp295 FreeBSDThread::WillResume(lldb::StateType resume_state) argument
299 log->Printf("tid %lu resume_state = %s", GetID(),
300 lldb_private::StateAsCString(resume_state));
306 switch (resume_state)
330 lldb::StateType resume_state = GetResumeState(); local
336 log->Printf ("FreeBSDThread::%s (), resume_state = %s", __FUNCTION__,
337 StateAsCString(resume_state));
339 switch (resume_state)
347 SetState(resume_state);
352 SetState(resume_state);
[all...]
H A DFreeBSDThread.h139 WillResume(lldb::StateType resume_state) override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanStepOverBreakpoint.cpp116 ThreadPlanStepOverBreakpoint::DoWillResume (StateType resume_state, bool current_plan) argument
H A DThreadPlan.cpp141 ThreadPlan::WillResume (StateType resume_state, bool current_plan) argument
162 StateAsCString(resume_state), StopOthers());
165 return DoWillResume (resume_state, current_plan);
H A DThreadPlanStepOverRange.cpp386 ThreadPlanStepOverRange::DoWillResume (lldb::StateType resume_state, bool current_plan) argument
388 if (resume_state != eStateSuspended && m_first_resume)
391 if (resume_state == eStateStepping && current_plan)
H A DThreadPlanBase.cpp220 ThreadPlanBase::DoWillResume (lldb::StateType resume_state, bool current_plan) argument
H A DThreadPlanStepThrough.cpp223 ThreadPlanStepThrough::DoWillResume (StateType resume_state, bool current_plan) argument
H A DThreadPlanStepInRange.cpp511 ThreadPlanStepInRange::DoWillResume (lldb::StateType resume_state, bool current_plan) argument
514 if (resume_state == eStateStepping && current_plan)
H A DThread.cpp722 Thread::ShouldResume (StateType resume_state) argument
731 SetTemporaryResumeState(resume_state);
735 backing_thread_sp->SetTemporaryResumeState(resume_state);
751 stop_info->WillResume (resume_state);
762 need_to_resume = plan_ptr->WillResume(resume_state, true);
766 plan_ptr->WillResume (resume_state, false);
772 if (need_to_resume && resume_state != eStateSuspended)
782 WillResume (resume_state);
H A DThreadPlanStepUntil.cpp327 ThreadPlanStepUntil::DoWillResume (StateType resume_state, bool current_plan) argument
H A DThreadPlanStepOut.cpp408 ThreadPlanStepOut::DoWillResume (StateType resume_state, bool current_plan) argument
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp273 ThreadGDBRemote::WillResume (StateType resume_state) argument
279 log->Printf ("Resuming thread: %4.4" PRIx64 " with state: %s.", tid, StateAsCString(resume_state));
285 switch (resume_state)
H A DThreadGDBRemote.h38 WillResume (lldb::StateType resume_state) override;

Completed in 170 milliseconds

12