Searched refs:progress (Results 1 - 25 of 39) sorted by last modified time

12

/haiku/src/apps/installer/
H A DInstallerWindow.cpp247 fProgressBar = new BStatusBar("progress",
248 B_TRANSLATE("Install progress: "));
300 // Make the optional packages and progress bar invisible on start
457 float progress; local
458 if (msg->FindFloat("progress", &progress) == B_OK) {
476 B_TRANSLATE_COMMENT("?? of ??", "Unknown progress");
478 fProgressBar->SetTo(progress, currentItem,
/haiku/src/tools/fs_shell/
H A Dcommand_cp.cpp902 bool progress = sourceFile->Stat().fssh_st_size > 1024 * 1024; local
903 if (progress) {
912 if (progress && (total % chunkSize) == 0) {
935 if (progress)
/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/haikudepot/ui/
H A DMainWindow.h116 float progress);
H A DMainWindow.cpp1148 MainWindow::_NotifyWorkStatusChange(const BString& text, float progress) argument
1154 message.AddFloat(KEY_WORK_STATUS_PROGRESS, progress);
1192 float progress; local
1197 if (message->FindFloat(KEY_WORK_STATUS_PROGRESS, &progress) == B_OK) {
1198 if (progress < 0.0f)
1201 fWorkStatusView->SetProgress(progress);
1203 HDERROR("work status change missing progress on update message");
1651 // show the progress to the user.
/haiku/src/apps/haikudepot/packagemodel/
H A DPackageInfo.h111 void SetDownloadProgress(float progress);
H A DPackageInfo.cpp372 PackageInfo::SetDownloadProgress(float progress) argument
375 fDownloadProgress = progress;
/haiku/src/apps/webpositive/
H A DBrowserWindow.cpp548 // Loading progress bar
549 fLoadingProgressBar = new BStatusBar("progress");
1572 BrowserWindow::LoadProgress(float progress, BWebView* view) argument
1577 if (progress < 100 && fLoadingProgressBar->IsHidden())
1579 else if (progress == 100 && !fLoadingProgressBar->IsHidden())
1581 fLoadingProgressBar->SetTo(progress);
H A DBrowserWindow.h146 virtual void LoadProgress(float progress, BWebView* view);
/haiku/src/apps/haikudepot/process/
H A DProcessCoordinator.h30 float progress, const BString& message,
H A DProcessCoordinator.cpp26 #define KEY_PROGRESS "progress"
64 const ProcessCoordinator* processCoordinator, float progress,
68 fProgress(progress),
360 "in progress - will defer");
63 ProcessCoordinatorState( const ProcessCoordinator* processCoordinator, float progress, const BString& message, bool isRunning, status_t errorStatus) argument
/haiku/src/bin/
H A Dbadblocks.cpp14 int progress = 1; variable
43 if (progress)
48 if (progress)
120 progress = 1;
/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/headers/os/drivers/
H A Ddisk_device_manager.h130 bool update_disk_device_job_progress(disk_job_id jobID, float progress);
/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/headers/os/media/
H A DMediaDefs.h800 bool (*progress)(int stage, const char* message, void* cookie) = NULL,
804 bool (*progress)(int stage, const char* message, void* cookie) = NULL,
/haiku/headers/private/drivers/
H A Dscsi_cmds.h80 // LUN in progress of becoming ready
86 // LUN format in progress
694 // format progress (if sense key = NOT READY)
700 uint16 progress; // 0 = start, 0xffff = almost finished member in struct:scsi_sense::__anon8::__anon12
/haiku/src/apps/haikudepot/packagemanagement/
H A DPackageProgressListener.h29 float progress);
H A DPackageManager.cpp76 float progress)
75 DownloadProgressChanged(const char* packageName, float progress) argument
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
H A DInstallPackageProcess.h43 float progress);
63 float 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/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/tests/add-ons/kernel/partitioning_systems/
H A DPartitioningSystemsTest.cpp334 update_disk_device_job_progress(disk_job_id jobID, float progress) argument
/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...]

Completed in 285 milliseconds

12