Lines Matching defs:progress_id
26 ProgressEvent::ProgressEvent(uint64_t progress_id,
30 : m_progress_id(progress_id) {
69 ProgressEvent::Create(uint64_t progress_id, std::optional<StringRef> message,
75 ProgressEvent event(progress_id, message, completed, total, prev_event);
170 void ProgressEventManager::Update(uint64_t progress_id, llvm::StringRef message,
173 progress_id, message, completed, total, &GetMostRecentEvent())) {
219 void ProgressEventReporter::Push(uint64_t progress_id, const char *message,
223 auto it = m_event_managers.find(progress_id);
226 progress_id, StringRef(message), completed, total)) {
229 m_event_managers.insert({progress_id, event_manager});
233 it->second->Update(progress_id, StringRef(message), completed, total);