• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/bsd/hfs/hfscommon/Misc/

Lines Matching defs:foundData

122 	HFSPlusExtentRecord		foundData,
212 // foundData The extent record actually found (NOTE: on an HFS volume, the
223 HFSPlusExtentRecord foundData,
283 foundData[0].startBlock = extentData[0].startBlock;
284 foundData[0].blockCount = extentData[0].blockCount;
285 foundData[1].startBlock = extentData[1].startBlock;
286 foundData[1].blockCount = extentData[1].blockCount;
287 foundData[2].startBlock = extentData[2].startBlock;
288 foundData[2].blockCount = extentData[2].blockCount;
292 foundData[i].startBlock = 0;
293 foundData[i].blockCount = 0;
334 BlockMoveData(&extentData, foundData, sizeof(HFSPlusExtentRecord));
478 HFSPlusExtentRecord foundData;
492 err = SearchExtentFile(vcb, fcb, offset, &foundKey, foundData, &foundIndex, &hint, &nextFABN);
494 startBlock = foundData[foundIndex].startBlock;
495 firstFABN = nextFABN - foundData[foundIndex].blockCount;
856 HFSPlusExtentRecord foundData;
866 error = SearchExtentFile(vcb, fcb, peof-1, &foundKey, foundData, &foundIndex, &hint, &nextBlock);
873 if (foundData[foundIndex].blockCount != 0)
885 foundData[0].startBlock = startBlock;
886 foundData[0].blockCount = blockCount;
890 foundData[i].startBlock = 0;
891 foundData[i].blockCount = 0;
896 error = CreateExtentRecord(vcb, &foundKey, foundData, &hint);
903 foundData[foundIndex].startBlock = startBlock;
904 foundData[foundIndex].blockCount = blockCount;
905 error = UpdateExtentRecord(vcb, fcb, &foundKey, foundData, hint);
935 HFSPlusExtentRecord foundData;
1060 err = SearchExtentFile(vcb, fcb, peof-1, &foundKey, foundData, &foundIndex, &hint, &nextBlock);
1098 startBlock = foundData[foundIndex].startBlock + foundData[foundIndex].blockCount;
1151 foundData[foundIndex].blockCount += actualNumBlocks;
1152 err = UpdateExtentRecord(vcb, fcb, &foundKey, foundData, hint);
1159 if (foundData[foundIndex].blockCount != 0) // Is current extent free to use?
1178 foundData[0].startBlock = actualStartBlock;
1179 foundData[0].blockCount = actualNumBlocks;
1184 foundData[i].startBlock = 0;
1185 foundData[i].blockCount = 0;
1190 err = CreateExtentRecord(vcb, &foundKey, foundData, &hint);
1204 foundData[foundIndex].startBlock = actualStartBlock;
1205 foundData[foundIndex].blockCount = actualNumBlocks;
1206 err = UpdateExtentRecord(vcb, fcb, &foundKey, foundData, hint);
1862 HFSExtentRecord foundData; // The extent data actually found
1873 btRecord.bufferAddress = &foundData;
1880 err = HFSPlusToHFSExtents(extentData, (HFSExtentDescriptor *)&foundData);
1887 HFSPlusExtentRecord foundData; // The extent data actually found
1894 btRecord.bufferAddress = &foundData;
1901 BlockMoveData(extentData, &foundData, sizeof(HFSPlusExtentRecord));