Home
last modified time | relevance | path

Searched refs:success (Results 1 – 25 of 173) sorted by relevance

1234567

/haiku/src/apps/debuganalyzer/model_loader/
H A DAbstractModelLoader.cpp111 AbstractModelLoader::FinishLoading(bool success) in FinishLoading() argument
117 AbstractModelLoader::NotifyTarget(bool success) in NotifyTarget() argument
119 BMessage message(success in NotifyTarget()
139 bool success = Load() == B_OK; in _Loader() local
144 FinishLoading(success); in _Loader()
145 NotifyTarget(success); in _Loader()
H A DAbstractModelLoader.h28 virtual void FinishLoading(bool success);
30 void NotifyTarget(bool success);
/haiku/src/tests/system/libroot/posix/
H A DTestUnitUtils.h66 _assert_posix_bool_success(const char* test, bool success, int lineNumber) in _assert_posix_bool_success() argument
68 if (success) in _assert_posix_bool_success()
78 _assert_posix_bool_error(const char* test, int expectedError, bool success, in _assert_posix_bool_error() argument
81 if (success) { in _assert_posix_bool_error()
134 #define assert_posix_bool_success(success) \ argument
135 _assert_posix_bool_success(currentTest, (success), __LINE__)
140 #define assert_posix_bool_error(expectedError, success) \ argument
141 _assert_posix_bool_error(currentTest, (expectedError), (success), __LINE__)
/haiku/src/add-ons/kernel/network/ppp/pap/
H A Dpap.cpp31 bool success; in add_to() local
34 success = subInterface->AddProtocol(pap); in add_to()
37 success = mainInterface.AddProtocol(pap); in add_to()
41 success && pap && pap->InitCheck() == B_OK ? "OK" : "ERROR"); in add_to()
43 return success && pap && pap->InitCheck() == B_OK; in add_to()
/haiku/src/add-ons/kernel/network/ppp/ipcp/
H A Dipcp.cpp48 bool success; in add_to() local
51 success = subInterface->AddProtocol(ipcp); in add_to()
54 success = mainInterface.AddProtocol(ipcp); in add_to()
58 success && ipcp && ipcp->InitCheck() == B_OK ? "OK" : "ERROR"); in add_to()
60 return success && ipcp && ipcp->InitCheck() == B_OK; in add_to()
/haiku/src/add-ons/kernel/network/ppp/modem/
H A Dmodem.cpp31 bool success; in add_to() local
34 success = subInterface->SetDevice(device); in add_to()
37 success = mainInterface.SetDevice(device); in add_to()
41 success && device && device->InitCheck() == B_OK ? "OK" : "ERROR"); in add_to()
43 return success && device && device->InitCheck() == B_OK; in add_to()
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_debug.c569 sym_ston(const struct res_sym *syms, const char *name, int *success) { in sym_ston() argument
572 if (success) in sym_ston()
573 *success = 1; in sym_ston()
577 if (success) in sym_ston()
578 *success = 0; in sym_ston()
583 sym_ntos(const struct res_sym *syms, int number, int *success) { in sym_ntos() argument
588 if (success) in sym_ntos()
589 *success = 1; in sym_ntos()
595 if (success) in sym_ntos()
596 *success = 0; in sym_ntos()
[all …]
/haiku/src/apps/icon-o-matic/generic/command/
H A DCommandStack.cpp111 bool success = false; in GetUndoName() local
116 success = true; in GetUndoName()
120 return success; in GetUndoName()
127 bool success = false; in GetRedoName() local
132 success = true; in GetRedoName()
136 return success; in GetRedoName()
/haiku/src/apps/icon-o-matic/generic/selection/
H A DSelection.cpp37 bool success = false; in Select() local
49 success = true; in Select()
63 success = true; in Select()
67 return success; in Select()
/haiku/src/libs/print/libprint/
H A DGraphicsDriver.cpp500 bool success = NextBand(fRotatedBitmap, &rotatedOffset); in _PrintBand() local
504 return success; in _PrintBand()
570 bool success; in _PrintDocument() local
576 success = true; in _PrintDocument()
616 for (copy = 0; success && copy < copies; copy ++) { in _PrintDocument()
622 success = StartPage(page_index); in _PrintDocument()
623 if (!success) in _PrintDocument()
628 success = _PrintPage(&pages); in _PrintDocument()
631 if (success) { in _PrintDocument()
632 success = EndPage(page_index); in _PrintDocument()
[all …]
/haiku/src/apps/mediaplayer/support/
H A DCommandStack.cpp114 bool success = false; in GetUndoName() local
119 success = true; in GetUndoName()
123 return success; in GetUndoName()
130 bool success = false; in GetRedoName() local
135 success = true; in GetRedoName()
139 return success; in GetRedoName()
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DTransaction.cpp80 Transaction::Done(bool success) in Done() argument
85 status_t status = fJournal->Unlock(this, success); in Done()
185 Transaction::NotifyListeners(bool success) in NotifyListeners() argument
189 if (success) { in NotifyListeners()
199 listener->TransactionDone(success); in NotifyListeners()
H A DTransaction.h26 virtual void TransactionDone(bool success) = 0;
40 status_t Done(bool success = true);
58 void NotifyListeners(bool success);
/haiku/src/tests/add-ons/kernel/file_systems/bfs/btree/
H A DJournal.h30 virtual void TransactionDone(bool success) = 0;
94 NotifyListeners(bool success) in NotifyListeners() argument
97 listener->TransactionDone(success); in NotifyListeners()
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DJournal.cpp45 Journal::_TransactionDone(bool success) in _TransactionDone() argument
47 if (!success) { in _TransactionDone()
91 Journal::UnLock(Transaction* owner, bool success) in UnLock() argument
95 status_t status = _TransactionDone(success); in UnLock()
/haiku/src/apps/haikudepot/textview/
H A DTextSpan.cpp118 bool success = charCount > fCharCount; in Insert() local
121 return success; in Insert()
134 bool success = charCount < fCharCount; in Remove() local
137 return success; in Remove()
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_main.cpp116 bool success = fuse_parse_lib_config_args(args, &config); in fuse_new() local
118 if (!success) { in fuse_new()
142 bool success = fuse_parse_lib_config_args(args, &config); in fuse_lowlevel_new() local
144 if (!success) { in fuse_lowlevel_new()
/haiku/src/kits/storage/
H A DNodeInfo.cpp516 bool success = false; in GetTrackerIcon() local
523 success = type.GetIconForType(mimeString, icon, which) == B_OK; in GetTrackerIcon()
534 if (!success && nodeType.GetPreferredApp(signature) == B_OK) { in GetTrackerIcon()
536 success = type.GetIconForType(mimeString, icon, which) == B_OK; in GetTrackerIcon()
541 if (!success) in GetTrackerIcon()
542 success = nodeType.GetIcon(icon, which) == B_OK; in GetTrackerIcon()
546 if (!success && nodeType.GetSupertype(&superType) == B_OK) { in GetTrackerIcon()
552 success = type.GetIconForType(superType.Type(), icon, in GetTrackerIcon()
556 if (!success) in GetTrackerIcon()
557 success = superType.GetIcon(icon, which) == B_OK; in GetTrackerIcon()
[all …]
/haiku/src/servers/app/
H A DBitmapManager.cpp167 bool success = false; in CreateBitmap() local
169 success = fBitmapList.AddItem(bitmap); in CreateBitmap()
170 if (success && bitmap->Overlay() != NULL) { in CreateBitmap()
171 success = fOverlays.AddItem(bitmap); in CreateBitmap()
172 if (!success) in CreateBitmap()
177 if (success) { in CreateBitmap()
/haiku/src/build/libbe/storage/
H A DNodeInfo.cpp622 bool success = false; in GetTrackerIcon() local
651 success = (error == B_OK); in GetTrackerIcon()
657 if (error == B_OK && !success) in GetTrackerIcon()
658 success = (GetIcon(icon, iconSize) == B_OK); in GetTrackerIcon()
662 if (error == B_OK && !success) { in GetTrackerIcon()
667 success = false; in GetTrackerIcon()
673 if (error == B_OK && !success) { in GetTrackerIcon()
680 if (error == B_OK && !success) { in GetTrackerIcon()
689 if (error == B_OK && !success) { in GetTrackerIcon()
694 success = (error == B_OK); in GetTrackerIcon()
/haiku/docs/develop/servers/registrar/
H A DProtocols.rst7 standard success reply message
64 | reply | standard success |
88 | reply | standard success |
121 | reply | standard success |
168 | reply | standard success |
201 | reply | standard success |
242 | reply | standard success |
272 | reply | standard success |
303 | reply | standard success |
336 | reply | standard success |
[all …]
/haiku/src/kits/network/libnetservices/
H A DUrlProtocolAsynchronousListener.cpp138 bool success; in MessageReceived() local
139 message->FindBool("url:success", &success); in MessageReceived()
141 RequestCompleted(caller, success); in MessageReceived()
/haiku/src/tests/system/kernel/unit/
H A DTestContext.cpp106 GlobalTestContext::TestDone(bool success) in TestDone() argument
109 if (!success) in TestDone()
242 TestContext::TestDone(bool success) in TestDone() argument
245 if (success) { in TestDone()
256 fGlobalContext->TestDone(success); in TestDone()
/haiku/src/preferences/network/
H A DIPAddressControl.cpp81 bool success = address.SetTo(fFamily, Text(), (char*)NULL, in _UpdateMark() local
84 MarkAsInvalid(!success); in _UpdateMark()
/haiku/src/apps/webpositive/
H A DDownloadProgressView.cpp639 BNotification success(B_INFORMATION_NOTIFICATION); in DownloadFinished() local
640 success.SetGroup(B_TRANSLATE("WebPositive")); in DownloadFinished()
641 success.SetTitle(B_TRANSLATE("Download finished")); in DownloadFinished()
642 success.SetContent(fPath.Leaf()); in DownloadFinished()
646 success.SetOnClickFile(&ref); in DownloadFinished()
647 success.SetIcon(fIconView->Bitmap()); in DownloadFinished()
648 success.Send(); in DownloadFinished()
662 BNotification success(B_ERROR_NOTIFICATION); in CancelDownload() local
663 success.SetGroup(B_TRANSLATE("WebPositive")); in CancelDownload()
664 success.SetTitle(B_TRANSLATE("Download aborted")); in CancelDownload()
[all …]

1234567