Lines Matching refs:result

63 		status_t result = BPackageDataReaderFactory()
65 if (result != B_OK)
66 return result;
75 result = reader->ReadData(0, buffer, bufferSize);
76 if (result != B_OK) {
78 strerror(result));
83 return result;
142 status_t result = dataFetcher.ReadIntoString(fHeapReader, licenseText);
143 if (result != B_OK)
144 return result;
209 status_t result = fPackageNames->InitCheck();
210 if (result != B_OK)
211 return result;
283 status_t result = _WriteRepositoryInfo(header, infoLength);
284 if (result != B_OK)
285 return result;
292 result = fHeapWriter->Finish();
293 if (result != B_OK)
294 return result;
326 status_t result = packageEntry.InitCheck();
327 if (result != B_OK) {
329 return result;
333 if ((result = packageEntry.GetPath(&packagePath)) != B_OK) {
336 return result;
340 if ((result = packageReader.Init(packagePath.Path())) != B_OK) {
343 return result;
351 if ((result = packageReader.ParseContent(&contentHandler)) != B_OK)
352 return result;
357 if ((result = checksumAccessor.GetChecksum(checksum)) != B_OK) {
360 return result;
365 if ((result = _RegisterCurrentPackageInfo()) != B_OK)
366 return result;
378 status_t result = _RegisterCurrentPackageInfo();
379 if (result != B_OK)
380 return result;
389 status_t result = fPackageInfo.InitCheck();
390 if (result != B_OK) {
393 return result;
428 if ((result = fPackageNames->Add(fPackageInfo.Name())) != B_OK)
429 return result;
447 status_t result = fRepositoryInfo->Archive(&archive);
448 if (result != B_OK) {
450 return result;
455 if ((result = archive.Flatten(buffer, flattenedSize)) != B_OK) {
457 return result;