Home | History | Annotate | Download | only in payload_generator

Lines Matching full:inodes

87   std::map<ext2_ino_t, FilesystemInterface::File>* inodes = nullptr;
107 auto ino_file = state->inodes->find(dirent->inode);
108 if (ino_file == state->inodes->end())
110 auto dir_file = state->inodes->find(dir);
111 if (dir_file == state->inodes->end())
168 std::map<ext2_ino_t, File> inodes;
191 // Skip inodes that are not in use.
195 File& file = inodes[it_ino];
247 // The set of inodes already added to the output. There can be less elements
248 // here than in files since the later can contain repeated inodes due to
253 priv_data.inodes = &inodes;
268 inodes[dir_ino].name = base::StringPrintf("<dir-%u>", dir_ino);
270 inodes[dir_ino].name = dir_name;
271 files->push_back(inodes[dir_ino]);
281 << inodes[dir_ino].name << " (error " << error << ")";
285 // Add <inode-blocks> file with the blocks that hold inodes.
310 // these inodes aren't files in the filesystem, ignore the empty ones.
311 for (const auto& ino_file : inodes) {
341 // Load the list of blocks and then the contents of the inodes.