Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DProgress.cpp27 m_total(Progress::kNonDeterministicTotal), in Progress()
31 m_total = *total;
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()
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()
45 if (m_total != Progress::kNonDeterministicTotal) 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()
43 bool IsFinite() const { return m_total != Progress::kNonDeterministicTotal; } in IsFinite()
45 uint64_t GetTotal() const { return m_total; } in GetTotal()
71 const uint64_t m_total; variable
H A DProgress.h131 uint64_t m_total; variable