Home
last modified time | relevance | path

Searched refs:progress_data (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DDebuggerEvents.cpp55 const ProgressEventData *progress_data = in GetAsStructuredData() local
58 if (!progress_data) in GetAsStructuredData()
62 dictionary_sp->AddStringItem("title", progress_data->GetTitle()); in GetAsStructuredData()
63 dictionary_sp->AddStringItem("details", progress_data->GetDetails()); in GetAsStructuredData()
64 dictionary_sp->AddStringItem("message", progress_data->GetMessage()); in GetAsStructuredData()
65 dictionary_sp->AddIntegerItem("progress_id", progress_data->GetID()); in GetAsStructuredData()
66 dictionary_sp->AddIntegerItem("completed", progress_data->GetCompleted()); in GetAsStructuredData()
67 dictionary_sp->AddIntegerItem("total", progress_data->GetTotal()); in GetAsStructuredData()
69 progress_data->IsDebuggerSpecific()); in GetAsStructuredData()
/freebsd-14.2/contrib/libarchive/tar/
H A Dread.c62 struct progress_data { struct
104 struct progress_data *progress_data = (struct progress_data *)cookie; in progress_func() local
105 struct bsdtar *bsdtar = progress_data->bsdtar; in progress_func()
106 struct archive *a = progress_data->archive; in progress_func()
107 struct archive_entry *entry = progress_data->entry; in progress_func()
143 struct progress_data progress_data; in read_archive() local
212 progress_data.bsdtar = bsdtar; in read_archive()
213 progress_data.archive = a; in read_archive()
215 &progress_data); in read_archive()
242 progress_data.entry = entry; in read_archive()
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp125 const ProgressEventData *progress_data = in GetProgressFromEvent() local
127 if (progress_data == nullptr) in GetProgressFromEvent()
129 progress_id = progress_data->GetID(); in GetProgressFromEvent()
130 completed = progress_data->GetCompleted(); in GetProgressFromEvent()
131 total = progress_data->GetTotal(); in GetProgressFromEvent()
132 is_debugger_specific = progress_data->IsDebuggerSpecific(); in GetProgressFromEvent()
133 ConstString message(progress_data->GetMessage()); in GetProgressFromEvent()