Searched defs:FdFile (Results 1 - 2 of 2) sorted by relevance

/art/runtime/base/unix_file/
H A Dfd_file.h33 class FdFile : public RandomAccessFile { class in namespace:unix_file
35 FdFile();
36 // Creates an FdFile using the given file descriptor. Takes ownership of the
38 FdFile(int fd, bool checkUsage);
39 FdFile(int fd, const std::string& path, bool checkUsage);
40 FdFile(int fd, const std::string& path, bool checkUsage, bool read_only_mode);
42 // Destroys an FdFile, closing the file descriptor if Close hasn't already
47 virtual ~FdFile();
85 bool Copy(FdFile* input_file, int64_t offset, int64_t size);
131 DISALLOW_COPY_AND_ASSIGN(FdFile);
[all...]
H A Dfd_file.cc27 // Includes needed for FdFile::Copy().
38 FdFile::FdFile() function in class:unix_file::FdFile
42 FdFile::FdFile(int fd, bool check_usage) function in class:unix_file::FdFile
47 FdFile::FdFile(int fd, const std::string& path, bool check_usage) function in class:unix_file::FdFile
48 : FdFile(fd, path, check_usage, false) {
51 FdFile::FdFile(in function in class:unix_file::FdFile
[all...]

Completed in 151 milliseconds