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

Lines Matching refs:extents

655  *	re-load meta-file info (extents, file size).
749 SWAP_BE32 (vhp->extentsFile.extents[i].startBlock);
751 SWAP_BE32 (vhp->extentsFile.extents[i].blockCount);
761 SWAP_BE32 (vhp->catalogFile.extents[i].startBlock);
763 SWAP_BE32 (vhp->catalogFile.extents[i].blockCount);
773 SWAP_BE32 (vhp->attributesFile.extents[i].startBlock);
775 SWAP_BE32 (vhp->attributesFile.extents[i].blockCount);
785 SWAP_BE32 (vhp->allocationFile.extents[i].startBlock);
787 SWAP_BE32 (vhp->allocationFile.extents[i].blockCount);
3143 volumeHeader->extentsFile.extents[i].startBlock =
3145 volumeHeader->extentsFile.extents[i].blockCount =
3158 volumeHeader->catalogFile.extents[i].startBlock =
3160 volumeHeader->catalogFile.extents[i].blockCount =
3173 volumeHeader->allocationFile.extents[i].startBlock =
3175 volumeHeader->allocationFile.extents[i].blockCount =
3188 volumeHeader->attributesFile.extents[i].startBlock =
3190 volumeHeader->attributesFile.extents[i].blockCount =
3204 volumeHeader->startupFile.extents[i].startBlock =
3206 volumeHeader->startupFile.extents[i].blockCount =
3425 printf("hfs_extendfs: error %d adding extents\n", error);
3995 * The contents of any moved extents are read and written via the volume's
4000 * This routine can be used to move overflow extents for the allocation file.
4009 * moved Set to true if any extents were moved.
4036 /* We always need the allocation bitmap and extents B-tree */
4048 /* Relocate non-overflow extents */
4089 /* Relocate overflow extents (if any) */
4158 * NOTE: To support relocating overflow extents of the
4490 /* Relocate extents of the Allocation file if they're in the way. */
4496 /* Relocate extents of the Extents B-tree if they're in the way. */
4499 printf("hfs_reclaimspace: reclaim extents b-tree returned %d\n", error);
4502 /* Relocate extents of the Catalog B-tree if they're in the way. */
4508 /* Relocate extents of the Attributes B-tree if they're in the way. */
4514 /* Relocate extents of the Startup File if there is one and they're in the way. */
4523 * any extents in the volume header. But we need to do that before
4572 /* Keep the Catalog and extents files locked during iteration. */
4599 if (filerec.dataFork.extents[i].blockCount != 0) {
4600 datablks += filerec.dataFork.extents[i].blockCount;
4601 block = filerec.dataFork.extents[i].startBlock +
4602 filerec.dataFork.extents[i].blockCount;
4615 if (filerec.resourceFork.extents[i].blockCount != 0) {
4616 rsrcblks += filerec.resourceFork.extents[i].blockCount;
4617 block = filerec.resourceFork.extents[i].startBlock +
4618 filerec.resourceFork.extents[i].blockCount;
4627 * Check for any overflow extents that overlap.
4757 * Check if there are any overflow extents that overlap.