Lines Matching refs:status

190 	status_t status = FlushLogAndBlocks();
192 if (status == B_OK) {
195 status = _SaveSuperBlock();
200 return status;
231 status_t status = recursive_lock_lock(&fLock);
232 if (status != B_OK)
233 return status;
285 status_t status = _TransactionDone(success);
286 if (status != B_OK)
287 return status;
365 status_t status = B_OK;
367 while (tag < lastTag && status == B_OK) {
414 status = MapBlock(logBlock, physicalBlock);
415 if (status != B_OK)
416 return status;
435 status = cache_next_block_in_transaction(fFilesystemBlockCache,
439 finished = status != B_OK;
446 status = MapBlock(descriptorBlockPos, physicalBlock);
447 if (status != B_OK)
448 return status;
556 status_t status = cache_next_block_in_transaction(fFilesystemBlockCache,
558 if (status != B_OK) {
570 status = _WritePartialTransactionToLog(descriptorBlock, detached,
573 if (!finished && status != B_OK)
574 return status;
581 status = _WritePartialTransactionToLog(descriptorBlock, detached,
584 if (!finished && status != B_OK)
585 return status;
593 status = MapBlock(logBlock, physicalBlock);
594 if (status != B_OK)
595 return status;
616 status = MapBlock(commitBlockPos, physicalBlock);
617 if (status != B_OK)
618 return status;
634 status = _SaveSuperBlock();
654 if (status == B_OK && _FullTransactionSize() > fLogSize) {
676 status_t status = MapBlock(0, physicalBlock);
677 if (status != B_OK)
678 return status;
718 status_t status = MapBlock(0, superblockPos);
719 if (status != B_OK)
720 return status;
757 status = _CheckFeatures(&superblock);
759 if (status != B_OK)
760 return status;
920 status_t status = _RecoverPassScan(lastCommitID);
921 if (status != B_OK)
922 return status;
924 status = _RecoverPassRevoke(lastCommitID);
925 if (status != B_OK)
926 return status;
944 status_t status = MapBlock(nextBlock, nextBlockPos);
945 if (status != B_OK)
946 return status;
977 status = MapBlock(nextBlock, nextBlockPos);
978 if (status != B_OK)
979 return status;
1004 status_t status = MapBlock(nextBlock, nextBlockPos);
1005 if (status != B_OK)
1006 return status;
1024 status = fRevokeManager->ScanRevokeBlock(
1027 if (status != B_OK)
1028 return status;
1036 status = MapBlock(nextBlock, nextBlockPos);
1037 if (status != B_OK)
1038 return status;
1066 status_t status = MapBlock(nextBlock, nextBlockPos);
1067 if (status != B_OK)
1068 return status;
1101 status = MapBlock(nextBlock, nextBlockPos);
1102 if (status != B_OK)
1103 return status;
1148 status = MapBlock(nextBlock, nextBlockPos);
1149 if (status != B_OK)
1150 return status;
1170 status_t status = canWait ? recursive_lock_lock(&fLock)
1175 if (status != B_OK)
1176 return status;
1186 status = _WriteTransactionToLog();
1187 if (status < B_OK)
1188 panic("Failed flushing transaction: %s\n", strerror(status));
1197 /*status = fJournalVolume->FlushDevice();
1198 if (status != B_OK)
1199 return status;*/
1206 status = fFilesystemVolume->FlushDevice();
1207 if (status == B_OK)
1215 TRACE("Journal::_FlushLog(): Done, final status: %s\n", strerror(status));
1216 return status;