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

/art/runtime/base/unix_file/
H A Dfd_file.h30 class FdFile : public RandomAccessFile { class in namespace:unix_file
32 FdFile();
33 // Creates an FdFile using the given file descriptor. Takes ownership of the
35 explicit FdFile(int fd);
36 explicit FdFile(int fd, const std::string& path);
38 // Destroys an FdFile, closing the file descriptor if Close hasn't already
43 virtual ~FdFile();
70 DISALLOW_COPY_AND_ASSIGN(FdFile);
H A Dfd_file.cc26 FdFile::FdFile() : fd_(-1), auto_close_(true) { function in class:unix_file::FdFile
29 FdFile::FdFile(int fd) : fd_(fd), auto_close_(true) { function in class:unix_file::FdFile
32 FdFile::FdFile(int fd, const std::string& path) : fd_(fd), file_path_(path), auto_close_(true) { function in class:unix_file::FdFile
36 FdFile::~FdFile() {
42 void FdFile::DisableAutoClose() {
46 bool FdFile
[all...]

Completed in 68 milliseconds