Searched defs:inodes (Results 1 - 4 of 4) sorted by relevance

/system/extras/squashfs_utils/
H A Dsquashfs_utils.h29 uint32_t inodes; member in struct:squashfs_info
/system/extras/ext4_utils/
H A Dext4_sb.h38 uint32_t inodes; member in struct:fs_info
H A Dmake_ext4fs.c381 u32 inodes = DIV_ROUND_UP(info.inodes, block_groups); local
382 inodes = EXT4_ALIGN(inodes, (info.block_size / info.inode_size));
384 /* After properly rounding up the number of inodes/group,
385 * make sure to update the total inodes field in the info struct.
387 info.inodes = inodes * block_groups;
389 return inodes;
743 if (info.inodes <
[all...]
/system/update_engine/payload_generator/
H A Dext2_filesystem.cc79 std::map<ext2_ino_t, FilesystemInterface::File>* inodes = nullptr; member in struct:chromeos_update_engine::__anon2049::UpdateFileAndAppendState
99 auto ino_file = state->inodes->find(dirent->inode);
100 if (ino_file == state->inodes->end())
102 auto dir_file = state->inodes->find(dir);
103 if (dir_file == state->inodes->end())
160 std::map<ext2_ino_t, File> inodes; local
183 // Skip inodes that are not in use.
187 File& file = inodes[it_ino];
239 // The set of inodes already added to the output. There can be less elements
240 // here than in files since the later can contain repeated inodes du
[all...]

Completed in 1598 milliseconds