HomeSort by relevance Sort by last modified time
    Searched full:resume_state (Results 1 - 25 of 26) sorted by null

1 2

  /external/lldb/source/Plugins/Process/Utility/
ThreadMemory.cpp 58 ThreadMemory::WillResume (StateType resume_state)
61 m_backing_thread_sp->WillResume(resume_state);
ThreadMemory.h 74 WillResume (lldb::StateType resume_state);
  /external/lldb/source/Plugins/Process/POSIX/
POSIXThread.cpp 215 POSIXThread::WillResume(lldb::StateType resume_state)
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);
POSIXThread.h 41 WillResume(lldb::StateType resume_state);
  /external/lldb/include/lldb/Target/
ThreadPlanStepOverBreakpoint.h 41 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
ThreadPlanStepOverRange.h 40 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
ThreadPlanStepThrough.h 38 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
ThreadPlanStepOut.h 52 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
ThreadPlanStepUntil.h 37 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
ThreadPlanBase.h 57 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
ThreadPlanStepInRange.h 67 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
StopInfo.h 99 WillResume (lldb::StateType resume_state)
ThreadPlan.h 381 WillResume (lldb::StateType resume_state, bool current_plan);
533 DoWillResume (lldb::StateType resume_state, bool current_plan) { return true; };
Thread.h 267 ShouldResume (lldb::StateType resume_state);
271 WillResume (lldb::StateType resume_state)
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ThreadGDBRemote.cpp 84 ThreadGDBRemote::WillResume (StateType resume_state)
90 log->Printf ("Resuming thread: %4.4" PRIx64 " with state: %s.", tid, StateAsCString(resume_state));
96 switch (resume_state)
ThreadGDBRemote.h 30 WillResume (lldb::StateType resume_state);
  /external/lldb/source/Target/
ThreadPlan.cpp 148 ThreadPlan::WillResume (StateType resume_state, bool current_plan)
172 StateAsCString(resume_state),
176 return DoWillResume (resume_state, current_plan);
ThreadPlanStepOverRange.cpp 340 ThreadPlanStepOverRange::DoWillResume (lldb::StateType resume_state, bool current_plan)
342 if (resume_state != eStateSuspended && m_first_resume)
345 if (resume_state == eStateStepping && current_plan)
Thread.cpp 599 Thread::ShouldResume (StateType resume_state)
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);
    [all...]
ThreadPlanStepOverBreakpoint.cpp 95 ThreadPlanStepOverBreakpoint::DoWillResume (StateType resume_state, bool current_plan)
ThreadPlanStepInRange.cpp 458 ThreadPlanStepInRange::DoWillResume (lldb::StateType resume_state, bool current_plan)
460 if (resume_state == eStateStepping && current_plan)
ThreadPlanBase.cpp 220 ThreadPlanBase::DoWillResume (lldb::StateType resume_state, bool current_plan)
ThreadPlanStepThrough.cpp 226 ThreadPlanStepThrough::DoWillResume (StateType resume_state, bool current_plan)
ThreadPlanStepOut.cpp 339 ThreadPlanStepOut::DoWillResume (StateType resume_state, bool current_plan)
ThreadPlanStepUntil.cpp 344 ThreadPlanStepUntil::DoWillResume (StateType resume_state, bool current_plan)

Completed in 362 milliseconds

1 2