HomeSort by relevance Sort by last modified time
    Searched refs:dirbuf (Results 1 - 2 of 2) sorted by null

  /external/grub/stage2/
fsys_xfs.c 63 #define dirbuf ((char *)FSYS_BUF) macro
303 0, 100, dirbuf);
346 #define h ((xfs_dir2_leaf_hdr_t *)dirbuf)
378 #define dau ((xfs_dir2_data_union_t *)dirbuf)
385 xfs_read (dirbuf, 4);
395 xfs_read ((char *)dirbuf + 4, 5);
400 xfs_read (dirbuf, toread);
401 name = (char *)dirbuf;
423 xfs_read (dirbuf, sizeof(xfs_dir2_data_hdr_t));
424 if (((xfs_dir2_data_hdr_t *)dirbuf)->magic == le32(XFS_DIR2_BLOCK_MAGIC))
    [all...]
  /system/extras/ext4_utils/
ext4fixup.c 620 static int recurse_dir(int fd, struct ext4_inode *inode, char *dirbuf, int dirsize, int mode)
672 read_block(fd, block_list[i], dirbuf + (i * info.block_size));
675 dirp = (struct ext4_dir_entry_2 *)dirbuf;
676 while (dirp < (struct ext4_dir_entry_2 *)(dirbuf + dirsize)) {
678 leftover_space = (char *)(dirbuf + dirsize) - (char *)dirp;
769 write_block(fd, block_list[i], dirbuf + (i * info.block_size));
791 char *dirbuf; local
845 dirbuf = malloc(dirsize);
846 if (dirbuf == 0) {
847 critical_error("failed to allocate memory for dirbuf\n")
    [all...]

Completed in 494 milliseconds