Searched refs:success (Results 51 - 75 of 135) sorted by relevance

123456

/haiku-fatelf/src/apps/launchbox/
H A Dsupport.cpp94 bool success = false; local
113 success = true;
116 return success;
/haiku-fatelf/src/add-ons/kernel/file_systems/ramfs/
H A DBlockAllocator.cpp353 bool success = false; local
382 success = true;
397 success = false;
402 success = false;
407 if (success && area->IsEmpty()) {
421 return success;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/ramfs/
H A DBlockAllocator.cpp355 bool success = false; local
384 success = true;
399 success = false;
404 success = false;
409 if (success && area->IsEmpty()) {
423 return success;
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_main.cpp116 bool success = fuse_parse_lib_config_args(args, &config); local
118 if (!success) {
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DJournal.h44 void Unlock(Transaction *owner, bool success);
62 status_t TransactionDone(bool success);
H A DJournal.cpp506 Journal::Unlock(Transaction *owner, bool success) argument
511 TransactionDone(success);
537 Journal::TransactionDone(bool success) argument
539 if (!success && fTransactionsInEntry == 0) {
/haiku-fatelf/src/kits/storage/
H A DNodeInfo.cpp794 bool success = false; local
801 success = type.GetIconForType(mimeString, icon, iconSize) == B_OK;
810 if (!success && nodeType.GetPreferredApp(signature) == B_OK) {
812 success = type.GetIconForType(mimeString, icon, iconSize) == B_OK;
816 if (!success)
817 success = nodeType.GetIcon(icon, iconSize) == B_OK;
819 // Get the super type if still no success.
821 if (!success && nodeType.GetSupertype(&superType) == B_OK) {
826 success = type.GetIconForType(superType.Type(), icon, iconSize) == B_OK;
829 if (!success)
[all...]
/haiku-fatelf/headers/os/net/
H A DUrlProtocolDispatchingListener.h52 bool success);
/haiku-fatelf/src/add-ons/print/drivers/pcl6/
H A DPCL6.h31 virtual bool EndDocument(bool success);
/haiku-fatelf/src/add-ons/kernel/network/ppp/pppoe/
H A Dpppoe.cpp209 bool success; local
212 success = subInterface->SetDevice(device);
215 success = mainInterface.SetDevice(device);
219 success && device && device->InitCheck() == B_OK ? "OK" : "ERROR");
221 return success && device && device->InitCheck() == B_OK;
/haiku-fatelf/src/apps/mail/
H A DEnclosures.cpp94 bool success = false;
101 success = (type.GetIconForType(type.Type(), icon, iconSize) == B_OK);
105 if (error == B_OK && !success)
106 success = (type.GetIcon(icon, iconSize) == B_OK);
109 if (error == B_OK && !success) {
116 if (error == B_OK && !success) {
/haiku-fatelf/src/tests/servers/app/newerClipping/
H A DDesktop.cpp239 bool success = false; local
253 success = true;
255 return success;
262 bool success = false; local
274 success = true;
276 return success;
/haiku-fatelf/src/apps/cortex/DiagramView/
H A DDiagramEndPoint.cpp239 bool success = connectionRequested(endPoint); local
243 dropMsg.AddBool("success", success);
/haiku-fatelf/src/apps/debuganalyzer/model_loader/
H A DThreadModelLoader.cpp83 ThreadModelLoader::FinishLoading(bool success) argument
85 if (!success) {
H A DModelLoader.h36 virtual void FinishLoading(bool success);
/haiku-fatelf/src/tests/system/kernel/unit/
H A DTestContext.h48 void TestDone(bool success);
120 void TestDone(bool success);
/haiku-fatelf/src/tests/kits/app/bmessenger/
H A DSMRemoteTargetApp.cpp76 data.success = looper->DeliverySuccess();
/haiku-fatelf/src/kits/interface/
H A DGroupLayout.cpp178 bool success = AddItem(index, item); local
179 if (success) {
184 return success;
H A DGridLayout.cpp186 // sets fColumnCount && fRowCount on success
447 bool success = BTwoDimensionalLayout::AddItem(-1, item);
448 if (!success)
469 return success;
767 bool success = true; local
771 success = false;
782 if (success) {
793 return success;
/haiku-fatelf/src/servers/app/
H A DEventDispatcher.cpp211 bool success = fListeners.AddItem(listener); local
212 if (!success)
215 return success;
397 bool success = target.AddListener(token, eventMask, options, temporary); local
398 if (!success) {
406 return success;
/haiku-fatelf/src/bin/gdb/gdb/
H A Dsolib-sunos.c595 int success = 0; local
622 success = 1;
624 return (success);
/haiku-fatelf/src/bin/network/wget/src/
H A Drecur.c694 bool success;
704 success = download_child_p (upos, orig_parsed, depth,
710 if (!success)
713 return success;
692 bool success; local
/haiku-fatelf/src/servers/registrar/
H A DMessageRunnerManager.cpp697 bool success = (info->DeliverMessage() == B_OK); local
699 if (success)
700 success = _ScheduleEvent(info);
704 if (!success) {
/haiku-fatelf/src/add-ons/kernel/file_systems/ext2/
H A DJournal.h174 virtual status_t Unlock(Transaction* owner, bool success);
250 virtual status_t _TransactionDone(bool success);
/haiku-fatelf/src/kits/interface/layouter/
H A DLayoutOptimizer.cpp672 bool success = _Solve(desired, values);
679 return success;
818 bool success = solve(aa, aam, lambda); local
819 if (!success) {
911 bool success = qr_decomposition(fTemp1, an, am, tempD, Q); local
912 if (!success) {
937 success = solve(fTemp2, zn, pz);
938 if (!success) {

Completed in 279 milliseconds

123456