Searched refs:progress (Results 1 - 25 of 39) sorted by relevance

12

/haiku/src/tools/fs_shell/
H A Ddisk_device_manager.cpp19 fssh_update_disk_device_job_progress(fssh_disk_job_id jobID, float progress) argument
/haiku/src/apps/sudoku/
H A DSudokuGenerator.h23 BMessenger progress, volatile bool *quit);
26 void _Progress(BMessenger progress, const char* text, float percent);
H A DSudokuGenerator.cpp45 SudokuGenerator::_Progress(BMessenger progress, const char* text, argument
52 progress.SendMessage(&update);
58 BMessenger progress, volatile bool *quit)
64 _Progress(progress, B_TRANSLATE("Creating solvable field"), 5.f);
117 _Progress(progress, B_TRANSLATE("Searching for removable values"), 30.f);
132 _Progress(progress, NULL, 100.f - (70.f * removeCount / 70.f));
152 _Progress(progress, NULL,
57 Generate(SudokuField* target, uint32 fieldsLeft, BMessenger progress, volatile bool *quit) argument
/haiku/src/servers/mail/
H A DDefaultNotifier.cpp88 BString progress; local
89 progress << fItemsDone << "/" << fTotalItems;
90 fNotification.SetContent(progress);
113 // Report progress in terms of message count instead
122 BString progress; local
123 progress << message << "\t";
126 progress << fItemsDone << "/" << fTotalItems;
128 fNotification.SetContent(progress);
/haiku/headers/private/media/
H A DMediaMisc.h14 bool (*progress)(int stage, const char* message, void* cookie),
19 bool (*progress)(int stage, const char* message, void* cookie),
/haiku/src/apps/haikudepot/packagemanagement/
H A DInstallPackageProcess.h43 float progress);
63 float progress);
H A DPackageProgressListener.h29 float progress);
H A DInstallPackageProcess.cpp58 DownloadProgress(BString packageName, float progress) argument
61 fProgress(progress)
198 const char* packageName, float progress)
201 if (now - fLastDownloadUpdate < 250000 && progress != 1.0)
211 ref->SetDownloadProgress(progress);
212 _SetDownloadProgress(simplePackageName, progress);
292 float progress)
295 DownloadProgress downloadProgress(simplePackageName, progress);
197 DownloadProgressChanged( const char* packageName, float progress) argument
291 _SetDownloadProgress(const BString& simplePackageName, float progress) argument
/haiku/src/apps/packageinstaller/
H A DPackageInstall.cpp135 PackageStatus* progress = fParent->StatusWindow(); local
136 progress->Reset(n + m + 5);
138 progress->StageStep(1, B_TRANSLATE("Preparing package"));
179 } else if (progress->Stopped()) {
186 progress->StageStep(1, B_TRANSLATE("Installing files and folders"));
227 if (progress->Stopped())
230 // Update progress
231 progress->StageStep(1, NULL, get_item_progress_string(i, n).String());
237 progress->StageStep(1, B_TRANSLATE("Running post-installation scripts"),
264 if (progress
[all...]
/haiku/src/bin/
H A Dbadblocks.cpp14 int progress = 1; variable
43 if (progress)
48 if (progress)
120 progress = 1;
/haiku/src/apps/installer/
H A DProgressReporter.cpp104 float progress = 100.0 * fBytesWritten / fBytesToWrite; local
105 message.AddFloat("progress", progress);
/haiku/src/tools/cppunit/cppunit/
H A DTestRunner.cpp62 * used to show the progress.
134 TextTestProgressListener progress; local
136 m_eventManager->addListener( &progress );
141 m_eventManager->removeListener( &progress );
/haiku/src/kits/app/
H A DNotification.cpp96 float progress; local
98 && archive->FindFloat("_progress", &progress) == B_OK)
99 SetProgress(progress);
320 BNotification::SetProgress(float progress) argument
322 if (progress < 0)
324 else if (progress > 1)
327 fProgress = progress;
/haiku/src/apps/haikudepot/process/
H A DProcessCoordinator.h30 float progress, const BString& message,
/haiku/src/kits/media/
H A DMediaDefs.cpp1264 notify_system(float progress, const char* message) argument
1268 notification.SetProgress(progress);
1285 bool (*progress)(int stage, const char* message, void* cookie),
1314 if (progress == NULL)
1317 progress(stage, string, cookie);
1323 bool (*progress)(int stage, const char* message, void* cookie),
1337 if (progress == NULL && roster->Lock()) {
1351 progress_shutdown(10, progress, cookie);
1361 progress_shutdown(20, progress, cookie);
1372 progress_shutdown(40, progress, cooki
[all...]
/haiku/3rdparty/mmu_man/scripts/
H A DHardwareChecker.sh23 notify --type progress \
27 --title "progress:" --progress "$p" "$m" "$@"
/haiku/headers/private/fs_shell/
H A Dfssh_disk_device_manager.h125 float progress);
/haiku/headers/os/app/
H A DNotification.h55 void SetProgress(float progress);
/haiku/src/libs/compat/freebsd_network/
H A Dfbsd_uipc_mbuf.c1264 int progress = 0, length; local
1293 while (progress < m0->m_pkthdr.len) {
1294 length = m0->m_pkthdr.len - progress;
1307 m_copydata(m0, progress, length, mtod(m_new, caddr_t));
1308 progress += length;
1441 int divisor = 255, progress = 0, fraglen; local
1468 while (progress < m0->m_pkthdr.len) {
1471 if (fraglen > m0->m_pkthdr.len - progress)
1472 fraglen = m0->m_pkthdr.len - progress;
1474 if (progress !
1509 int progress = 0; local
1563 int progress = 0; local
[all...]
/haiku/src/apps/diskprobe/
H A DDataEditor.cpp1106 // start progress monitor
1108 BMessage progress(kMsgDataEditorFindProgress);
1109 progress.AddBool("running", true);
1110 progressMonitor.SendMessage(&progress);
1130 // report the progress two times a second
1131 BMessage progress(kMsgDataEditorFindProgress);
1132 progress.AddInt64("position", position);
1133 progressMonitor.SendMessage(&progress);
1189 // stop progress monitor
1191 BMessage progress(kMsgDataEditorFindProgres
[all...]
/haiku/src/servers/notification/
H A DNotificationView.cpp56 { "progress", {B_GET_PROPERTY, B_SET_PROPERTY, 0},
57 {B_DIRECT_SPECIFIER, 0}, "get the progress (between 0.0 and 1.0)"},
94 BStatusBar* progress = new BStatusBar("progress"); local
95 progress->SetBarHeight(12.0f);
96 progress->SetMaxValue(1.0f);
97 progress->Update(fNotification->Progress());
106 progress->SetTrailingText(label.String());
107 layout->AddView(progress);
172 if (strcmp(property, "progress")
[all...]
/haiku/src/apps/showimage/
H A DImageCache.cpp248 BMessage progress(kMsgImageCacheProgressUpdate);
249 progress.AddRef("ref", &queueEntry->ref);
252 ioExtension.AddMessage("/progressMessage", &progress);
/haiku/headers/os/drivers/
H A Ddisk_device_manager.h130 bool update_disk_device_job_progress(disk_job_id jobID, float progress);
/haiku/src/system/kernel/disk_device_manager/
H A Ddisk_device_manager.cpp267 update_disk_device_job_progress(disk_job_id jobID, float progress) argument
273 job->UpdateProgress(progress);
/haiku/src/apps/haikudepot/ui/
H A DMainWindow.h116 float progress);

Completed in 144 milliseconds

12