HomeSort by relevance Sort by last modified time
    Searched defs:FdFile (Results 1 - 2 of 2) sorted by null

  /art/runtime/base/unix_file/
fd_file.h 35 class FdFile : public RandomAccessFile {
37 FdFile();
38 // Creates an FdFile using the given file descriptor. Takes ownership of the
40 FdFile(int fd, bool checkUsage);
41 FdFile(int fd, const std::string& path, bool checkUsage);
42 FdFile(int fd, const std::string& path, bool checkUsage, bool read_only_mode);
44 FdFile(const std::string& path, int flags, bool checkUsage)
45 : FdFile(path, flags, 0640, checkUsage) {}
46 FdFile(const std::string& path, int flags, mode_t mode, bool checkUsage);
49 FdFile(FdFile&& other
    [all...]
fd_file.cc 27 // Includes needed for FdFile::Copy().
38 FdFile::FdFile()
42 FdFile::FdFile(int fd, bool check_usage)
47 FdFile::FdFile(int fd, const std::string& path, bool check_usage)
48 : FdFile(fd, path, check_usage, false) {
51 FdFile::FdFile(int fd, const std::string& path, bool check_usage, bool read_only_mode
    [all...]

Completed in 61 milliseconds