| /llvm-project-15.0.7/lldb/tools/lldb-vscode/ |
| H A D | ProgressEvent.cpp | 24 ProgressEvent::ProgressEvent(uint64_t progress_id, Optional<StringRef> message, in ProgressEvent() argument 27 : m_progress_id(progress_id) { in ProgressEvent() 65 Optional<ProgressEvent> ProgressEvent::Create(uint64_t progress_id, in Create() argument 73 ProgressEvent event(progress_id, message, completed, total, prev_event); in Create() 163 void ProgressEventManager::Update(uint64_t progress_id, uint64_t completed, in Update() argument 166 progress_id, None, completed, total, &GetMostRecentEvent())) { in Update() 212 void ProgressEventReporter::Push(uint64_t progress_id, const char *message, in Push() argument 216 auto it = m_event_managers.find(progress_id); in Push() 219 ProgressEvent::Create(progress_id, StringRef(message), completed, total)) { in Push() 222 m_event_managers.insert({progress_id, event_manager}); in Push() [all …]
|
| H A D | ProgressEvent.h | 50 Create(uint64_t progress_id, llvm::Optional<llvm::StringRef> message, 73 ProgressEvent(uint64_t progress_id, llvm::Optional<llvm::StringRef> message, 104 void Update(uint64_t progress_id, uint64_t completed, uint64_t total); 139 void Push(uint64_t progress_id, const char *message, uint64_t completed,
|
| H A D | VSCode.cpp | 324 void VSCode::SendProgressEvent(uint64_t progress_id, const char *message, in SendProgressEvent() argument 326 progress_event_reporter.Push(progress_id, message, completed, total); in SendProgressEvent()
|
| H A D | VSCode.h | 172 void SendProgressEvent(uint64_t progress_id, const char *message,
|
| H A D | lldb-vscode.cpp | 397 uint64_t progress_id = 0; in ProgressEventThreadFunction() local 402 event, progress_id, completed, total, is_debugger_specific); in ProgressEventThreadFunction() 404 g_vsc.SendProgressEvent(progress_id, message, completed, total); in ProgressEventThreadFunction()
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | DebuggerEvents.h | 22 ProgressEventData(uint64_t progress_id, const std::string &message, in ProgressEventData() argument 24 : m_message(message), m_id(progress_id), m_completed(completed), in ProgressEventData()
|
| H A D | Debugger.h | 467 static void ReportProgress(uint64_t progress_id, const std::string &message,
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | Debugger.cpp | 1298 static void PrivateReportProgress(Debugger &debugger, uint64_t progress_id, in PrivateReportProgress() argument 1307 event_type, new ProgressEventData(progress_id, message, completed, total, in PrivateReportProgress() 1312 void Debugger::ReportProgress(uint64_t progress_id, const std::string &message, in ReportProgress() argument 1321 PrivateReportProgress(*debugger_sp, progress_id, message, completed, in ReportProgress() 1331 PrivateReportProgress(*(*pos), progress_id, message, completed, total, in ReportProgress()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBDebugger.h | 82 uint64_t &progress_id,
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBDebugger.cpp | 154 uint64_t &progress_id, in GetProgressFromEvent() argument 163 progress_id = progress_data->GetID(); in GetProgressFromEvent()
|