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

12

/external/lldb/include/lldb/Target/
H A DThreadPlanStepOverRange.h40 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanBase.h57 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanStepOverBreakpoint.h41 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanStepInRange.h67 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanStepOut.h52 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanStepThrough.h38 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanStepUntil.h37 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlan.h381 WillResume (lldb::StateType resume_state, bool current_plan);
533 DoWillResume (lldb::StateType resume_state, bool current_plan) { return true; }; argument
H A DStopInfo.h99 WillResume (lldb::StateType resume_state) argument
H A DThread.h267 ShouldResume (lldb::StateType resume_state);
271 WillResume (lldb::StateType resume_state) argument
/external/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.h74 WillResume (lldb::StateType resume_state);
/external/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp84 ThreadGDBRemote::WillResume (StateType resume_state) argument
90 log->Printf ("Resuming thread: %4.4" PRIx64 " with state: %s.", tid, StateAsCString(resume_state));
96 switch (resume_state)
H A DThreadGDBRemote.h30 WillResume (lldb::StateType resume_state);
/external/lldb/source/Plugins/Process/POSIX/
H A DPOSIXThread.cpp215 POSIXThread::WillResume(lldb::StateType resume_state) argument
219 log->Printf ("POSIXThread::%s (tid = %" PRIi64 ") setting thread resume state to %s", __FUNCTION__, GetID(), StateAsCString(resume_state));
222 SetResumeState(resume_state);
234 lldb::StateType resume_state = GetResumeState(); local
240 log->Printf ("POSIXThread::%s (), resume_state = %s", __FUNCTION__,
241 StateAsCString(resume_state));
243 switch (resume_state)
251 SetState(resume_state);
256 SetState(resume_state);
H A DPOSIXThread.h41 WillResume(lldb::StateType resume_state);
/external/lldb/source/Target/
H A DThreadPlanStepOverBreakpoint.cpp95 ThreadPlanStepOverBreakpoint::DoWillResume (StateType resume_state, bool current_plan) argument
H A DThreadPlan.cpp148 ThreadPlan::WillResume (StateType resume_state, bool current_plan) argument
172 StateAsCString(resume_state),
176 return DoWillResume (resume_state, current_plan);
H A DThreadPlanStepOverRange.cpp340 ThreadPlanStepOverRange::DoWillResume (lldb::StateType resume_state, bool current_plan) argument
342 if (resume_state != eStateSuspended && m_first_resume)
345 if (resume_state == eStateStepping && current_plan)
H A DThreadPlanBase.cpp220 ThreadPlanBase::DoWillResume (lldb::StateType resume_state, bool current_plan) argument
H A DThreadPlanStepThrough.cpp226 ThreadPlanStepThrough::DoWillResume (StateType resume_state, bool current_plan) argument
H A DThread.cpp599 Thread::ShouldResume (StateType resume_state) argument
606 m_temporary_resume_state = resume_state;
610 backing_thread_sp->m_temporary_resume_state = resume_state;
625 stop_info->WillResume (resume_state);
636 need_to_resume = plan_ptr->WillResume(resume_state, true);
640 plan_ptr->WillResume (resume_state, false);
646 if (need_to_resume && resume_state != eStateSuspended)
656 WillResume (resume_state);
H A DThreadPlanStepInRange.cpp458 ThreadPlanStepInRange::DoWillResume (lldb::StateType resume_state, bool current_plan) argument
460 if (resume_state == eStateStepping && current_plan)
H A DThreadPlanStepOut.cpp339 ThreadPlanStepOut::DoWillResume (StateType resume_state, bool current_plan) argument
H A DThreadPlanStepUntil.cpp344 ThreadPlanStepUntil::DoWillResume (StateType resume_state, bool current_plan) argument

Completed in 179 milliseconds

12