Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DProgress.cpp26 : m_details(details), m_completed(0), in Progress()
48 if (!m_completed) in ~Progress()
49 m_completed = m_total; in ~Progress()
65 if (m_total && (amount > (m_total - m_completed))) in Increment()
66 m_completed = m_total; in Increment()
68 m_completed += amount; in Increment()
77 m_complete = m_completed == m_total; in ReportProgress()
79 m_details, m_completed, m_total, in ReportProgress()
H A DDebuggerEvents.cpp39 if (m_completed == 0 || m_completed == m_total) in Dump()
40 s->Printf(", type = %s", m_completed == 0 ? "start" : "end"); in Dump()
46 s->Printf(", progress = %" PRIu64 " of %" PRIu64, m_completed, m_total); in Dump()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebuggerEvents.h28 m_id(progress_id), m_completed(completed), m_total(total), in ProgressEventData()
44 uint64_t GetCompleted() const { return m_completed; } in GetCompleted()
70 uint64_t m_completed; variable
H A DProgress.h128 uint64_t m_completed; variable
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp2509 bool m_completed = false; member in Catch::AssertionHandler
2519 if ( !m_completed ) { in ~AssertionHandler()
8175 m_completed = true; in setCompleted()