Lines Matching refs:file
3 // found in the LICENSE file.
27 // A class used to write entries to a ZIP file and buffering the reading of
36 // Creates a writer that will write a ZIP file to |zip_file_fd| or |zip_file|
38 // All file reads are performed using |file_accessor|.
78 // Adds the entries at |paths| to the ZIP file. These can be a mixed bag of
83 // Closes the ZIP file.
94 // Adds file content to currently open file entry.
95 bool AddFileContent(const base::FilePath& path, base::File file);
97 // Adds a file entry (including file contents).
98 bool AddFileEntry(const base::FilePath& path, base::File file);
100 // Adds file entries. All the paths should be existing files.
112 // Opens a file or directory entry.
123 // The actual zip file.
126 // Abstraction over file access methods used to read files.
141 // Filter used to exclude files from the ZIP file.