Home
last modified time | relevance | path

Searched refs:m_completed (Results 1 – 4 of 4) sorted by relevance

/openbsd/src/gnu/llvm/lldb/source/Core/
DProgress.cpp21 : m_title(title), m_id(++g_id), m_completed(0), m_total(total) { in Progress()
33 if (!m_completed) { in ~Progress()
34 m_completed = m_total; in ~Progress()
44 if (amount > (m_total - m_completed)) in Increment()
45 m_completed = m_total; in Increment()
47 m_completed += amount; in Increment()
56 m_complete = m_completed == m_total; in ReportProgress()
57 Debugger::ReportProgress(m_id, m_title, m_completed, m_total, in ReportProgress()
DDebuggerEvents.cpp37 if (m_completed == 0 || m_completed == m_total) in Dump()
38 s->Printf(", type = %s", m_completed == 0 ? "start" : "end"); in Dump()
44 s->Printf(", progress = %" PRIu64 " of %" PRIu64, m_completed, m_total); in Dump()
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
DDebuggerEvents.h25 : m_message(message), m_id(progress_id), m_completed(completed), in ProgressEventData()
37 uint64_t GetCompleted() const { return m_completed; } in GetCompleted()
45 uint64_t m_completed; variable
DProgress.h101 uint64_t m_completed; variable