Lines Matching refs:result

104 	status_t result = B_UNSUPPORTED;
112 result = _ResolveCallingApp(*message, callingAppInfo);
113 if (result != B_OK)
139 result = B_BAD_VALUE;
160 result = unlockResult;
169 result = validateResult;
187 result = B_BAD_VALUE;
205 result = keyring->FindKey(identifier, secondaryIdentifier,
207 if (result == B_OK)
221 result = B_BAD_VALUE;
226 result = keyring->FindKey(type, purpose, cookie, keyMessage);
227 if (result == B_OK) {
242 result = B_BAD_VALUE;
252 result = keyring->AddKey(identifier, secondaryIdentifier, keyMessage);
253 if (result == B_OK)
265 result = B_BAD_VALUE;
269 result = keyring->RemoveKey(identifier, keyMessage);
270 if (result == B_OK)
281 result = B_BAD_VALUE;
285 result = _AddKeyring(keyring);
286 if (result == B_OK)
298 result = _RemoveKeyring(keyringName);
299 if (result == B_OK)
309 result = B_BAD_VALUE;
315 result = B_ENTRY_NOT_FOUND;
322 result = B_OK;
329 result = B_OK;
336 result = B_OK;
344 result = B_BAD_VALUE;
348 result = keyring->SetUnlockKey(keyMessage);
349 if (result == B_OK)
358 result = keyring->RemoveUnlockKey();
359 if (result == B_OK)
372 result = unlockResult;
390 result = fMasterKeyring->AddKey(kKeyringKeysIdentifier,
395 result = fMasterKeyring->RemoveKey(kKeyringKeysIdentifier,
400 if (result == B_OK)
410 result = B_BAD_VALUE;
416 result = keyring->GetNextApplication(cookie, signature, path);
417 if (result != B_OK)
423 result = B_OK;
433 result = B_BAD_VALUE;
440 result = keyring->RemoveApplication(signature, path);
441 if (result == B_OK)
462 if (result == B_OK)
466 reply.AddInt32("result", result);
478 status_t result = keystore.Unflatten(&fKeyStoreFile);
479 if (result != B_OK) {
483 return result;
495 status_t result = keyring->ReadFromMessage(keyringData);
496 if (result != B_OK) {
524 status_t result = keyring->WriteToMessage(keyringData);
525 if (result != B_OK)
526 return result;
626 status_t result = be_roster->GetRunningAppInfo(callingTeam,
628 if (result != B_OK)
629 return result;
645 status_t result = keyring.FindApplication(appInfo.signature,
647 if (result != B_OK && result != B_ENTRY_NOT_FOUND)
648 return result;
657 if (result == B_OK) {
674 result = _RequestAppAccess(keyring.Name(), appInfo.signature, path.Path(),
676 if (result != B_OK || !allowAlways)
677 return result;
771 status_t result = _RequestKey(keyring.Name(), keyMessage);
772 if (result != B_OK)
773 return result;