Home
last modified time | relevance | path

Searched refs:m_pre_resume_actions (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/source/Target/
DProcess.cpp5660 m_pre_resume_actions.push_back(PreResumeCallbackAndBaton(callback, baton)); in AddPreResumeAction()
5665 while (!m_pre_resume_actions.empty()) { in RunPreResumeActions()
5666 struct PreResumeCallbackAndBaton action = m_pre_resume_actions.back(); in RunPreResumeActions()
5667 m_pre_resume_actions.pop_back(); in RunPreResumeActions()
5675 void Process::ClearPreResumeActions() { m_pre_resume_actions.clear(); } in ClearPreResumeActions()
5680 auto found_iter = std::find(m_pre_resume_actions.begin(), m_pre_resume_actions.end(), element); in ClearPreResumeAction()
5681 if (found_iter != m_pre_resume_actions.end()) in ClearPreResumeAction()
5683 m_pre_resume_actions.erase(found_iter); in ClearPreResumeAction()
/external/llvm-project/lldb/include/lldb/Target/
DProcess.h2826 std::vector<PreResumeCallbackAndBaton> m_pre_resume_actions; variable