HomeSort by: relevance | last modified time | path
    Searched defs:inodebuf (Results 1 - 5 of 5) sorted by relevancy

  /src/usr.sbin/installboot/
ext2fs.c 198 uint8_t inodebuf[MAXBSIZE]; local in function:ext2fs_find_disk_blocks
240 fs->e2fs_bsize, inodebuf))
242 inode = (void *)inodebuf;
ffs.c 126 char inodebuf[MAXBSIZE]; local in function:ffs_find_disk_blocks_ufs1
162 fs->fs_bsize, inodebuf))
164 inode = (struct ufs1_dinode *)inodebuf;
263 char inodebuf[MAXBSIZE]; local in function:ffs_find_disk_blocks_ufs2
299 fs->fs_bsize, inodebuf))
301 inode = (struct ufs2_dinode *)inodebuf;
  /src/sbin/fsck_ext2fs/
inode.c 420 char *inodebuf; variable in typeref:typename:char *
443 (void)bread(fsreadfd, inodebuf, dblk, size);
444 bp = inodebuf;
471 if (inodebuf == NULL &&
472 (inodebuf = malloc((unsigned int)inobufsize)) == NULL)
482 if (inodebuf != NULL)
483 free(inodebuf);
484 inodebuf = NULL;
  /src/sbin/fsck_ffs/
inode.c 399 union dinode *inodebuf; variable in typeref:union:dinode *
423 (void)bread(fsreadfd, (caddr_t)inodebuf, dblk, size);
426 swap_dinode2(inodebuf, lastinum - inumber);
428 swap_dinode1(inodebuf, lastinum - inumber);
429 bwrite(fswritefd, (char *)inodebuf, dblk, size);
431 dp = (union dinode *)inodebuf;
452 if (inodebuf != NULL)
465 if (inodebuf == NULL &&
466 (inodebuf = aligned_alloc(DEV_BSIZE, (unsigned)inobufsize)) == NULL)
474 if (inodebuf != NULL
    [all...]
  /src/usr.sbin/quotacheck/
quotacheck.c 732 static union comb_dinode *inodebuf; variable in typeref:union:comb_dinode *
758 (void)bread(dblk, (caddr_t)inodebuf, size);
762 swap_dinode2(inodebuf, lastinum - inumber);
765 swap_dinode1(inodebuf, lastinum - inumber);
767 dp = (union comb_dinode *)inodebuf;
787 if (inodebuf != NULL)
800 if (inodebuf == NULL &&
801 (inodebuf = malloc((unsigned)inobufsize)) == NULL)
811 free(inodebuf);
812 inodebuf = NULL
    [all...]

Completed in 15 milliseconds