/haiku/docs/develop/kits/storage/ |
H A D | DiskDeviceAPI_Protocols | 55 the computation of job progress may result in multiple 56 B_DISK_DEVICE_JOB_UPDATE messages with "progress" fields of 100. 60 disk device job simple progress update message 62 target: Registered job simple progress update BMessengers 65 "progress": B_UINT8_TYPE 71 - progress: Percent of job completed (0 to 100) 77 disk device job extra progress update message 79 target: Registered job extra progress update BMessengers 87 - info: Extended progress info string, i.e. "block 123: found
|
/haiku/src/apps/packageinstaller/ |
H A D | PackageInstall.cpp | 135 PackageStatus* progress = fParent->StatusWindow(); in _Install() local 136 progress->Reset(n + m + 5); in _Install() 138 progress->StageStep(1, B_TRANSLATE("Preparing package")); in _Install() 179 } else if (progress->Stopped()) { in _Install() 186 progress->StageStep(1, B_TRANSLATE("Installing files and folders")); in _Install() 227 if (progress->Stopped()) in _Install() 231 progress->StageStep(1, NULL, get_item_progress_string(i, n).String()); in _Install() 237 progress->StageStep(1, B_TRANSLATE("Running post-installation scripts"), in _Install() 264 if (progress->Stopped()) in _Install() 267 progress->StageStep(1, NULL, get_item_progress_string(i, m).String()); in _Install() [all …]
|
/haiku/src/servers/mail/ |
H A D | DefaultNotifier.cpp | 88 BString progress; in SetTotalItems() local 89 progress << fItemsDone << "/" << fTotalItems; in SetTotalItems() 90 fNotification.SetContent(progress); in SetTotalItems() 122 BString progress; in ReportProgress() local 123 progress << message << "\t"; in ReportProgress() 126 progress << fItemsDone << "/" << fTotalItems; in ReportProgress() 128 fNotification.SetContent(progress); in ReportProgress()
|
/haiku/src/apps/sudoku/ |
H A D | SudokuGenerator.cpp | 45 SudokuGenerator::_Progress(BMessenger progress, const char* text, in _Progress() argument 52 progress.SendMessage(&update); in _Progress() 58 BMessenger progress, volatile bool *quit) in Generate() argument 64 _Progress(progress, B_TRANSLATE("Creating solvable field"), 5.f); in Generate() 117 _Progress(progress, B_TRANSLATE("Searching for removable values"), 30.f); in Generate() 132 _Progress(progress, NULL, 100.f - (70.f * removeCount / 70.f)); in Generate() 152 _Progress(progress, NULL, in Generate()
|
H A D | SudokuGenerator.h | 23 BMessenger progress, volatile bool *quit); 26 void _Progress(BMessenger progress, const char* text, float percent);
|
/haiku/src/apps/haikudepot/packagemanagement/ |
H A D | InstallPackageProcess.cpp | 60 DownloadProgress(BString packageName, float progress) in DownloadProgress() argument 63 fProgress(progress) in DownloadProgress() 200 const char* packageName, float progress) in DownloadProgressChanged() argument 203 if (now - fLastDownloadUpdate < 250000 && progress != 1.0) in DownloadProgressChanged() 213 SetPackageDownloadProgress(ref, progress); in DownloadProgressChanged() 214 _SetDownloadProgress(simplePackageName, progress); in DownloadProgressChanged() 295 float progress) in _SetDownloadProgress() argument 298 DownloadProgress downloadProgress(simplePackageName, progress); in _SetDownloadProgress()
|
H A D | InstallPackageProcess.h | 43 float progress); 63 float progress);
|
H A D | PackageProgressListener.h | 29 float progress);
|
/haiku/src/bin/ |
H A D | badblocks.cpp | 14 int progress = 1; variable 43 if (progress) in scan_device() 48 if (progress) in scan_device() 120 progress = 1; in main()
|
/haiku/src/tools/cppunit/cppunit/ |
H A D | TestRunner.cpp | 134 TextTestProgressListener progress; in runTest() local 136 m_eventManager->addListener( &progress ); in runTest() 141 m_eventManager->removeListener( &progress ); in runTest()
|
/haiku/headers/private/media/ |
H A D | MediaMisc.h | 14 bool (*progress)(int stage, const char* message, void* cookie), 19 bool (*progress)(int stage, const char* message, void* cookie),
|
/haiku/src/kits/app/ |
H A D | Notification.cpp | 96 float progress; in BNotification() local 98 && archive->FindFloat("_progress", &progress) == B_OK) in BNotification() 99 SetProgress(progress); in BNotification() 320 BNotification::SetProgress(float progress) in SetProgress() argument 322 if (progress < 0) in SetProgress() 324 else if (progress > 1) in SetProgress() 327 fProgress = progress; in SetProgress()
|
/haiku/src/apps/installer/ |
H A D | ProgressReporter.cpp | 104 float progress = 100.0 * fBytesWritten / fBytesToWrite; in _UpdateProgress() local 105 message.AddFloat("progress", progress); in _UpdateProgress()
|
/haiku/src/kits/media/ |
H A D | MediaDefs.cpp | 1264 notify_system(float progress, const char* message) in notify_system() argument 1268 notification.SetProgress(progress); in notify_system() 1285 bool (*progress)(int stage, const char* message, void* cookie), in progress_shutdown() 1314 if (progress == NULL) in progress_shutdown() 1317 progress(stage, string, cookie); in progress_shutdown() 1323 bool (*progress)(int stage, const char* message, void* cookie), in shutdown_media_server() 1337 if (progress == NULL && roster->Lock()) { in shutdown_media_server() 1351 progress_shutdown(10, progress, cookie); in shutdown_media_server() 1361 progress_shutdown(20, progress, cookie); in shutdown_media_server() 1372 progress_shutdown(40, progress, cookie); in shutdown_media_server() [all …]
|
/haiku/src/tools/fs_shell/ |
H A D | disk_device_manager.cpp | 19 fssh_update_disk_device_job_progress(fssh_disk_job_id jobID, float progress) in fssh_update_disk_device_job_progress() argument
|
/haiku/src/libs/compat/freebsd_network/ |
H A D | fbsd_uipc_mbuf.c | 1264 int progress = 0, length; in m_defrag() local 1293 while (progress < m0->m_pkthdr.len) { in m_defrag() 1294 length = m0->m_pkthdr.len - progress; in m_defrag() 1307 m_copydata(m0, progress, length, mtod(m_new, caddr_t)); in m_defrag() 1308 progress += length; in m_defrag() 1441 int divisor = 255, progress = 0, fraglen; in m_fragment() local 1468 while (progress < m0->m_pkthdr.len) { in m_fragment() 1471 if (fraglen > m0->m_pkthdr.len - progress) in m_fragment() 1472 fraglen = m0->m_pkthdr.len - progress; in m_fragment() 1474 if (progress != 0) { in m_fragment() [all …]
|
/haiku/src/apps/haikudepot/packagemodel/ |
H A D | PackageLocalInfo.cpp | 133 PackageLocalInfo::SetDownloadProgress(float progress) in SetDownloadProgress() argument 136 fDownloadProgress = progress; in SetDownloadProgress()
|
H A D | PackageLocalInfo.h | 79 void SetDownloadProgress(float progress);
|
/haiku/src/servers/notification/ |
H A D | NotificationView.cpp | 94 BStatusBar* progress = new BStatusBar("progress"); in NotificationView() local 95 progress->SetBarHeight(12.0f); in NotificationView() 96 progress->SetMaxValue(1.0f); in NotificationView() 97 progress->Update(fNotification->Progress()); in NotificationView() 106 progress->SetTrailingText(label.String()); in NotificationView() 107 layout->AddView(progress); in NotificationView()
|
/haiku/data/catalogs/apps/pulse/ |
H A D | ru.catkeys | 14 CPU progress bar NormalPulseView CPU progress bar
|
/haiku/src/apps/diskprobe/ |
H A D | DataEditor.cpp | 1108 BMessage progress(kMsgDataEditorFindProgress); in Find() local 1109 progress.AddBool("running", true); in Find() 1110 progressMonitor.SendMessage(&progress); in Find() 1131 BMessage progress(kMsgDataEditorFindProgress); in Find() local 1132 progress.AddInt64("position", position); in Find() 1133 progressMonitor.SendMessage(&progress); in Find() 1191 BMessage progress(kMsgDataEditorFindProgress); in Find() local 1192 progress.AddBool("running", false); in Find() 1193 progress.AddInt64("position", foundAt >= 0 ? foundAt : savedOffset); in Find() 1194 progressMonitor.SendMessage(&progress); in Find()
|
/haiku/3rdparty/mmu_man/scripts/ |
H A D | HardwareChecker.sh | 23 notify --type progress \ 27 --title "progress:" --progress "$p" "$m" "$@"
|
/haiku/docs/develop/kernel/arch/m68k/ |
H A D | overview.rst | 7 There is work in progress to target Atari, Amiga, and NeXT hardware platforms.
|
/haiku/docs/user/app/ |
H A D | Notification.dox | 73 This will have the notification appear with a progress bar. 95 which can be an information message, a warning, an error, or a progress 105 which is particularly useful for progress notifications. 106 - For progress notifications, the 365 \brief Returns the progress for the notification. 377 \fn void BNotification::SetProgress(float progress) 378 \brief Sets progress information. 381 the notification view will show a progress bar and a label that 382 expresses the progress in a percentage. Using this method you can set 385 The valid range is between 0.0 and 1.0. If \c progress is lower than 0.0
|
/haiku/data/catalogs/apps/serialconnect/ |
H A D | id.catkeys | 21 file transfer progress SerialWindow kemajuan transfer file
|