Lines Matching full:inodes
79 std::map<ext2_ino_t, FilesystemInterface::File>* inodes = nullptr;
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;
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 due to
245 priv_data.inodes = &inodes;
260 inodes[dir_ino].name = base::StringPrintf("<dir-%u>", dir_ino);
262 inodes[dir_ino].name = dir_name;
263 files->push_back(inodes[dir_ino]);
273 << inodes[dir_ino].name << " (error " << error << ")";
277 // Add <inode-blocks> file with the blocks that hold inodes.
302 // these inodes aren't files in the filesystem, ignore the empty ones.
303 for (const auto& ino_file : inodes) {
333 // Load the list of blocks and then the contents of the inodes.