Searched refs:B_OK (Results 1 - 25 of 4180) sorted by relevance

1234567891011>>

/haiku/src/system/kernel/arch/x86/
H A Darch_commpage.cpp17 return B_OK;
30 return B_OK;
H A Darch_commpage_compat.cpp21 return B_OK;
34 return B_OK;
/haiku/src/tests/servers/registrar/
H A DFakeAuthenticationManager.cpp22 return B_OK;
/haiku/src/add-ons/kernel/file_systems/packagefs/nodes/
H A DAttributeCookie.cpp18 return B_OK;
H A DAttributeDirectoryCookie.cpp18 return B_OK;
H A DEmptyAttributeDirectoryCookie.cpp15 return B_OK;
22 return B_OK;
/haiku/src/system/kernel/arch/x86/32/
H A Derrata.cpp17 return B_OK;
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DNodeMonitoringEvent.cpp37 if (message->FindInt32("device", &volumeID) != B_OK
38 || message->FindInt64("directory", &directoryID) != B_OK
39 || message->FindInt64("node", &nodeID) != B_OK
40 || message->FindString("name", &localName) != B_OK) {
45 return B_OK;
56 if (message->FindInt32("device", &volumeID) != B_OK
57 || message->FindInt64("directory", &directoryID) != B_OK
58 || message->FindInt64("node", &nodeID) != B_OK) {
62 return B_OK;
74 if (message->FindInt32("device", &volumeID) != B_OK
[all...]
/haiku/src/system/kernel/arch/ppc/
H A Darch_commpage.cpp21 return B_OK;
28 return B_OK;
/haiku/src/kits/debugger/settings/
H A DNoOpSettingsManager.cpp25 return B_OK;
32 return B_OK;
/haiku/src/system/kernel/arch/sparc/
H A Darch_commpage.cpp20 return B_OK;
27 return B_OK;
H A Darch_int.cpp16 return B_OK;
23 return B_OK;
30 return B_OK;
37 return B_OK;
/haiku/src/tools/translation/inspector/
H A DStatusCheck.cpp7 // Class is used to throw exceptions when values other than B_OK are
39 // a status_t value that is not B_OK,
45 if (ret != B_OK)
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/haiku/
H A Dentry_cache.cpp16 return B_OK;
23 return B_OK;
30 return B_OK;
/haiku/src/system/kernel/arch/arm/
H A Darch_platform.cpp21 return B_OK;
30 return B_OK;
38 return B_OK;
/haiku/src/kits/storage/
H A DMimeType.cpp114 fCStatus = B_OK;
153 return InitCheck() == B_OK && BMimeType::IsValid(Type());
161 if (fCStatus == B_OK) {
162 // We assume here fCStatus will be B_OK *only* if
180 return InitCheck() == B_OK
193 status_t status = fCStatus == B_OK ? B_OK : B_BAD_VALUE;
194 if (status == B_OK) {
208 status = supertype->SetTo(superMime) == B_OK ? B_OK
[all...]
H A DVolume.cpp75 status_t error = (device >= 0 ? B_OK : B_BAD_VALUE);
76 if (error == B_OK) {
82 if (error == B_OK)
113 status_t error = (directory && InitCheck() == B_OK ? B_OK : B_BAD_VALUE);
116 if (error == B_OK && fs_stat_dev(fDevice, &info) != 0)
119 if (error == B_OK) {
134 status_t error = (InitCheck() == B_OK ? B_OK : B_BAD_VALUE);
137 if (error == B_OK
[all...]
/haiku/src/build/libbe/storage/
H A DNodeInfo.cpp83 - \c B_OK: Everything went fine.
91 fCStatus = (node && node->InitCheck() == B_OK ? B_OK : B_BAD_VALUE);
92 if (fCStatus == B_OK)
101 - \c B_OK: Everything went fine.
120 - \c B_OK: Everything went fine.
133 status_t error = (type ? B_OK : B_BAD_VALUE);
134 if (error == B_OK && InitCheck() != B_OK)
138 if (error == B_OK)
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DAuthenticationServer.cpp28 return (fServerPort >= 0 ? B_OK : fServerPort);
41 if (InitCheck() != B_OK)
46 if (error != B_OK)
49 if (error != B_OK)
52 if (error != B_OK)
55 if (error != B_OK)
58 if (error != B_OK)
63 if (error != B_OK)
67 if (reply.FindInt32("error", &error) != B_OK)
69 if (error != B_OK)
[all...]
/haiku/src/kits/debugger/
H A DDebuggerGlobals.cpp18 if (error != B_OK)
22 if (error != B_OK)
26 if (error != B_OK)
35 if (error != B_OK)
38 return B_OK;
/haiku/src/add-ons/kernel/file_systems/netfs/netfs_server_prefs/
H A DNetFSServerRoster.cpp27 return (_InitMessenger() == B_OK);
35 if (error != B_OK)
54 status_t error = B_OK;
77 return (error == B_BAD_SEM_ID ? B_OK : B_ERROR);
104 if (request.AddString("user", user) != B_OK
105 || (password && request.AddString("password", password) != B_OK)) {
123 if (request.AddString("user", user) != B_OK)
144 if (error != B_OK)
148 if (reply.FindMessage("users", users) != B_OK)
151 return B_OK;
[all...]
/haiku/src/add-ons/media/plugins/ape_reader/LibMonkeysAudio/
H A DPositionBridgeIO.cpp32 return B_OK;
37 return B_OK;
48 return B_OK;
65 if (err != B_OK)
73 return B_OK;
81 return *oBytesRead == 0 ? ERROR_IO_READ : B_OK;
88 return mPositionIO->Seek(oDistance, oMoveMode) < B_OK ? B_ERROR : B_OK;
96 return B_OK;
102 return B_OK;
[all...]
/haiku/src/apps/deskcalc/
H A DCalcOptions.cpp37 if (archive->FindBool("auto num lock", &option) == B_OK)
40 if (archive->FindBool("audio feedback", &option) == B_OK)
43 if (archive->FindBool("degree mode", &option) == B_OK)
46 if (archive->FindUInt8("keypad mode", &keypad_mode_option) == B_OK)
56 if (ret == B_OK)
59 if (ret == B_OK)
62 if (ret == B_OK)
/haiku/src/servers/keystore/
H A DKeyring.cpp38 if (result != B_OK)
42 if (result != B_OK)
47 return B_OK;
53 if (result != B_OK)
66 return B_OK;
74 if (result != B_OK)
83 if (result != B_OK)
87 if (result != B_OK)
98 return B_OK;
107 if (result != B_OK) {
[all...]
/haiku/src/apps/haikudepot/util/
H A DDataIOUtils.cpp14 status_t result = B_OK;
23 case B_OK:
28 } while(result == B_OK && sizeRead > 0);
74 return B_OK;
101 return B_OK;
106 return B_OK;
111 return B_OK;
116 return B_OK;
121 return B_OK;
126 return B_OK;
[all...]

Completed in 267 milliseconds

1234567891011>>