/openbsd/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
H A D | TargetThreadWindows.cpp | 49 void TargetThreadWindows::WillResume(lldb::StateType resume_state) {} in WillResume() argument 128 StateType resume_state = GetTemporaryResumeState(); in DoResume() local 130 if (resume_state == current_state) in DoResume() 133 if (resume_state == eStateStepping) { in DoResume() 160 if (resume_state == eStateStepping || resume_state == eStateRunning) { in DoResume()
|
H A D | NativeThreadWindows.cpp | 46 Status NativeThreadWindows::DoResume(lldb::StateType resume_state) { in DoResume() argument 48 if (resume_state == current_state) in DoResume() 51 if (resume_state == eStateStepping) { in DoResume() 78 if (resume_state == eStateStepping || resume_state == eStateRunning) { in DoResume()
|
H A D | TargetThreadWindows.h | 31 void WillResume(lldb::StateType resume_state) override;
|
H A D | NativeThreadWindows.h | 29 Status DoResume(lldb::StateType resume_state);
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
H A D | ThreadMemory.cpp | 38 void ThreadMemory::WillResume(StateType resume_state) { in WillResume() argument 40 m_backing_thread_sp->WillResume(resume_state); in WillResume()
|
H A D | ThreadMemory.h | 56 void WillResume(lldb::StateType resume_state) override;
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | ThreadPlan.cpp | 116 bool ThreadPlan::WillResume(StateType resume_state, bool current_plan) { in WillResume() argument 136 StateAsCString(resume_state), StopOthers()); in WillResume() 139 bool success = DoWillResume(resume_state, current_plan); in WillResume()
|
H A D | ThreadPlanStepOverRange.cpp | 368 bool ThreadPlanStepOverRange::DoWillResume(lldb::StateType resume_state, in DoWillResume() argument 370 if (resume_state != eStateSuspended && m_first_resume) { in DoWillResume() 372 if (resume_state == eStateStepping && current_plan) { in DoWillResume()
|
H A D | ThreadPlanBase.cpp | 185 bool ThreadPlanBase::DoWillResume(lldb::StateType resume_state, in DoWillResume() argument
|
H A D | ThreadPlanStepOverBreakpoint.cpp | 110 bool ThreadPlanStepOverBreakpoint::DoWillResume(StateType resume_state, in DoWillResume() argument
|
H A D | Thread.cpp | 675 bool Thread::ShouldResume(StateType resume_state) { in ShouldResume() argument 682 SetTemporaryResumeState(resume_state); in ShouldResume() 686 backing_thread_sp->SetTemporaryResumeState(resume_state); in ShouldResume() 703 stop_info->WillResume(resume_state); in ShouldResume() 714 need_to_resume = plan_ptr->WillResume(resume_state, true); in ShouldResume() 717 plan_ptr->WillResume(resume_state, false); in ShouldResume() 723 if (need_to_resume && resume_state != eStateSuspended) { in ShouldResume() 731 WillResume(resume_state); in ShouldResume()
|
H A D | ThreadPlanStepInRange.cpp | 460 bool ThreadPlanStepInRange::DoWillResume(lldb::StateType resume_state, in DoWillResume() argument 463 if (resume_state == eStateStepping && current_plan) { in DoWillResume()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ThreadGDBRemote.cpp | 236 void ThreadGDBRemote::WillResume(StateType resume_state) { in WillResume() argument 241 StateAsCString(resume_state)); in WillResume() 247 switch (resume_state) { in WillResume()
|
H A D | ThreadGDBRemote.h | 34 void WillResume(lldb::StateType resume_state) override;
|
/openbsd/gnu/llvm/lldb/include/lldb/Target/ |
H A D | ThreadPlan.h | 392 bool WillResume(lldb::StateType resume_state, bool current_plan); 493 virtual bool DoWillResume(lldb::StateType resume_state, bool current_plan) { in DoWillResume() argument
|
H A D | ThreadPlanStepOverRange.h | 34 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
H A D | ThreadPlanBase.h | 42 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
H A D | ThreadPlanStepOverBreakpoint.h | 40 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
H A D | ThreadPlanStepThrough.h | 32 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
H A D | ThreadPlanStepUntil.h | 30 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
H A D | ThreadPlanStepInRange.h | 53 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
H A D | ThreadPlanStepOut.h | 49 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/scripted/ |
H A D | ScriptedThread.h | 55 void WillResume(lldb::StateType resume_state) override;
|
/openbsd/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 353 ::DoWillResume(lldb::StateType resume_state, bool current_plan) { in DoWillResume() argument 354 ThreadPlanStepOut::DoWillResume(resume_state, current_plan); in DoWillResume()
|
H A D | AppleThreadPlanStepThroughObjCTrampoline.h | 99 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|