Lines Matching refs:result

37 	status_t result = message.FindString("name", &fName);
38 if (result != B_OK)
39 return result;
41 result = message.FindBool("hasUnlockKey", &fHasUnlockKey);
42 if (result != B_OK)
43 return result;
52 result = message.FindData("data", B_RAW_TYPE, &data, &size);
53 if (result != B_OK)
54 return result;
73 status_t result = _EncryptToFlatBuffer();
74 if (result != B_OK)
75 return result;
78 result = message.AddBool("noData", true);
80 result = message.AddData("data", B_RAW_TYPE, fFlatBuffer.Buffer(),
83 if (result != B_OK)
84 return result;
86 result = message.AddBool("hasUnlockKey", fHasUnlockKey);
87 if (result != B_OK)
88 return result;
106 status_t result = _DecryptFromFlatBuffer();
107 if (result != B_OK) {
109 return result;
187 status_t result = fApplications.GetInfo(B_MESSAGE_TYPE, cookie++,
189 if (result != B_OK)
193 result = fApplications.FindMessage(nameFound, &appMessage);
194 if (result != B_OK)
197 result = appMessage.FindString("path", &path);
198 if (result != B_OK)
241 status_t result = fApplications.AddMessage(signature, &appMessage);
242 if (result != B_OK)
243 return result;
258 status_t result = fApplications.RemoveName(signature);
259 if (result != B_OK)
414 status_t result = fData.AddMessage(identifier, &keyMessage);
415 if (result != B_OK)
416 return result;
444 status_t result = fData.RemoveData(identifier, i);
445 if (result != B_OK)
446 return result;
480 status_t result = container.AddMessage("data", &fData);
481 if (result != B_OK)
482 return result;
484 result = container.AddMessage("applications", &fApplications);
485 if (result != B_OK)
486 return result;
491 result = container.Flatten(&fFlatBuffer);
492 if (result != B_OK)
493 return result;
516 status_t result = container.Unflatten(&fFlatBuffer);
517 if (result != B_OK)
518 return result;
520 result = container.FindMessage("data", &fData);
521 if (result != B_OK)
522 return result;
524 result = container.FindMessage("applications", &fApplications);
525 if (result != B_OK) {
527 return result;