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

12

/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.cpp39 FreeBSDThread::WillResume(lldb::StateType resume_state) argument
43 log->Printf("tid %lu resume_state = %s", GetID(),
44 lldb_private::StateAsCString(resume_state));
50 switch (resume_state)
H A DFreeBSDThread.h36 WillResume(lldb::StateType resume_state);
/freebsd-10.3-release/contrib/llvm/tools/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.h204 ShouldResume (lldb::StateType resume_state);
208 WillResume (lldb::StateType resume_state) argument
/freebsd-10.3-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.h74 WillResume (lldb::StateType resume_state);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp111 ThreadGDBRemote::WillResume (StateType resume_state) argument
117 log->Printf ("Resuming thread: %4.4" PRIx64 " with state: %s.", tid, StateAsCString(resume_state));
123 switch (resume_state)
H A DThreadGDBRemote.h30 WillResume (lldb::StateType resume_state);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DPOSIXThread.cpp270 POSIXThread::WillResume(lldb::StateType resume_state) argument
274 log->Printf ("POSIXThread::%s (tid = %" PRIi64 ") setting thread resume state to %s", __FUNCTION__, GetID(), StateAsCString(resume_state));
277 SetResumeState(resume_state);
289 lldb::StateType resume_state = GetResumeState(); local
295 log->Printf ("POSIXThread::%s (), resume_state = %s", __FUNCTION__,
296 StateAsCString(resume_state));
298 switch (resume_state)
306 SetState(resume_state);
311 SetState(resume_state);
H A DPOSIXThread.h41 WillResume(lldb::StateType resume_state);
/freebsd-10.3-release/contrib/llvm/tools/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.cpp344 ThreadPlanStepOverRange::DoWillResume (lldb::StateType resume_state, bool current_plan) argument
346 if (resume_state != eStateSuspended && m_first_resume)
349 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 DThreadPlanStepInRange.cpp485 ThreadPlanStepInRange::DoWillResume (lldb::StateType resume_state, bool current_plan) argument
487 if (resume_state == eStateStepping && current_plan)
H A DThread.cpp647 Thread::ShouldResume (StateType resume_state) argument
654 m_temporary_resume_state = resume_state;
658 backing_thread_sp->m_temporary_resume_state = resume_state;
673 stop_info->WillResume (resume_state);
684 need_to_resume = plan_ptr->WillResume(resume_state, true);
688 plan_ptr->WillResume (resume_state, false);
694 if (need_to_resume && resume_state != eStateSuspended)
704 WillResume (resume_state);

Completed in 123 milliseconds

12