Searched refs:nextAllocation (Results 1 - 18 of 18) sorted by last modified time

/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/
H A Dhfs.h33 * of the disk instead of the nextAllocation for sparse devices like
183 u_int32_t nextAllocation; /* start of next allocation search */ member in struct:hfsmount
416 /* When set, do not update nextAllocation in the mount structure */
438 * nextAllocation block.
443 hfsmp->nextAllocation = new_nextAllocation; \
H A Dhfs_format.h680 u_int32_t nextAllocation; /* start of next allocation search */ member in struct:HFSPlusVolumeHeader
H A Dhfs_readwrite.c2048 *(u_int32_t *)ap->a_data = hfsmp->nextAllocation;
2050 /* On magic value for location, set nextAllocation to next block
2052 * that nextAllocation should not be updated again.
4907 blockHint = hfsmp->nextAllocation;
4971 nextallocsave = hfsmp->nextAllocation;
H A Dhfs_vfsops.c910 HFS_UPDATE_NEXT_ALLOCATION(vcb, SWAP_BE32 (vhp->nextAllocation));
2161 // set the nextAllocation pointer to the smallest free block number
2170 if (min_start < hfsmp->nextAllocation) {
2171 hfsmp->nextAllocation = min_start;
3635 mdb->drAllocPtr = SWAP_BE16 (vcb->nextAllocation);
3865 volumeHeader->nextAllocation = SWAP_BE32 (vcb->nextAllocation);
4794 if (hfsmp->nextAllocation >= hfsmp->allocLimit) {
4795 hfsmp->nextAllocation = hfsmp->hfs_metazone_end + 1;
H A Dhfs_vfsutils.c134 vcb->nextAllocation = SWAP_BE16 (mdb->drAllocPtr);
432 vcb->nextAllocation = SWAP_BE32(vhp->nextAllocation);
943 if (vcb->nextAllocation >= hfsmp->hfs_metazone_start &&
944 vcb->nextAllocation <= hfsmp->hfs_metazone_end) {
948 if (vcb->nextAllocation <= 1) {
949 vcb->nextAllocation = hfsmp->hfs_min_alloc_start;
H A Dhfs_vnops.c751 (void) hfs_relocate(vp, hfsmp->nextAllocation + 4096,
H A Dhfs_hotfiles.c1407 error = hfs_relocate(vp, HFSTOVCB(hfsmp)->nextAllocation, vfs_context_ucred(ctx), vfs_context_proc(ctx));
H A Dhfs_btreeio.c440 startAllocation = vcb->nextAllocation;
477 (vcb->nextAllocation > startAllocation) &&
478 ((vcb->nextAllocation + fileblocks) < vcb->allocLimit)) {
479 HFS_UPDATE_NEXT_ALLOCATION(vcb, vcb->nextAllocation + fileblocks);
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/hfscommon/Misc/
H A DFileExtentMapping.c1349 if (vcb->nextAllocation >= VCBTOHFS(vcb)->hfs_metazone_start &&
1350 vcb->nextAllocation <= VCBTOHFS(vcb)->hfs_metazone_end) {
H A DVolumeAllocation.c867 Boolean updateAllocPtr = false; // true if nextAllocation needs to be updated
946 /* Sparse Allocation and nextAllocation are both used even if the R/B Tree is on */
951 startingBlock = vcb->nextAllocation;
1246 if (vcb->nextAllocation == (firstBlock + numBlocks)) {
1247 HFS_UPDATE_NEXT_ALLOCATION(vcb, (vcb->nextAllocation - numBlocks));
3205 // set the nextAllocation pointer to the smallest free block number
3215 if (min_start < vcb->nextAllocation) {
3216 vcb->nextAllocation = min_start;
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/dfalib/
H A DSVerify1.c3185 if ( volumeHeader->nextAllocation < vcb->vcbTotalBlocks )
3186 vcb->vcbNextAllocation = volumeHeader->nextAllocation;
H A DSVerify2.c1703 if ( volumeHeader->nextAllocation != vcb->vcbNextAllocation ) {
1705 plog( "\tinvalid VHB nextAllocation \n" );
H A DSUtils.c2289 volumeHeader->nextAllocation = vcb->vcbNextAllocation;
H A Dhfs_endian.c166 src->nextAllocation = SWAP_BE32 (src->nextAllocation);
/macosx-10.9.5/hfs-226.1.1/newfs_hfs/
H A Dmakehfs.c825 hp->nextAllocation = defaults->nextAllocBlock;
827 hp->nextAllocation = nextBlock;
H A Dhfs_endian.c135 src->nextAllocation = SWAP_BE32 (src->nextAllocation);
/macosx-10.9.5/hfs-226.1.1/CopyHFSMeta/
H A Dmain.c196 left->nextAllocation != right->nextAllocation ||
/macosx-10.9.5/pdisk-9/
H A Dhfs_misc.c133 u32 nextAllocation; member in struct:HFSPlusVolumeHeader

Completed in 330 milliseconds