Home | History | Annotate | Download | only in payload_generator

Lines Matching defs:File

5 // you may not use this file except in compliance with the License.
44 // This represents a file or pseudo-file in the filesystem. It can include
45 // all sort of files, like symlinks, hardlinks, directories and even a file
47 struct File {
48 File() {
52 // The stat struct for the file. This is invalid (inode 0) for some
56 // The absolute path to the file inside the filesystem, for example,
61 // The list of all physical blocks holding the data of this file in
67 // All the deflate locations in the file. These locations are not relative
68 // to the extents. They are relative to the file system itself.
82 // be repeated; but the same block could be present in more than one file as
85 virtual bool GetFiles(std::vector<File>* files) const = 0;
88 // /etc/update_engine.conf file. Returns whether the settings were found.