Home
last modified time | relevance | path

Searched refs:m_resume_count (Results 1 – 3 of 3) sorted by relevance

/openbsd/gnu/llvm/lldb/include/lldb/Host/
H A DProcessLaunchInfo.h80 uint32_t GetResumeCount() const { return m_resume_count; } in GetResumeCount()
82 void SetResumeCount(uint32_t c) { m_resume_count = c; } in SetResumeCount()
176 uint32_t m_resume_count = 0; // How many times do we resume after launching variable
/openbsd/gnu/llvm/lldb/include/lldb/Target/
H A DProcess.h118 : m_resume_count(0), m_wait_for_launch(false), m_ignore_existing(true), in ProcessAttachInfo()
145 uint32_t GetResumeCount() const { return m_resume_count; } in GetResumeCount()
147 void SetResumeCount(uint32_t c) { m_resume_count = c; } in SetResumeCount()
160 m_resume_count = 0; in Clear()
199 uint32_t m_resume_count = 0; // How many times do we resume after launching variable
/openbsd/gnu/llvm/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp171 m_resume_count = 0; in Clear()