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

  /art/runtime/
os.h 21 class FdFile;
26 typedef ::unix_file::FdFile File;
  /art/runtime/base/unix_file/
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...]
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_test.cc 27 return new FdFile(fileno(tmpfile()), false);
44 FdFile file;
52 FdFile file(good_path, O_CREAT | O_WRONLY, true);
61 FdFile file2(good_path, O_RDONLY, true);
73 FdFile file(tmp.GetFilename(), O_RDONLY, false);
89 FdFile file(tmp.GetFilename(), O_RDWR, false);
118 FdFile file(tmp.GetFilename(), O_RDWR, false);
145 FdFile src(src_tmp.GetFilename(), O_RDWR, false);
155 FdFile dest(src_tmp.GetFilename(), O_RDWR, false);
174 FdFile file(tmp.GetFilename(), O_RDWR, false)
    [all...]
  /art/runtime/base/
scoped_flock.h 38 class LockedFile : public unix_file::FdFile {
67 explicit LockedFile(FdFile&& other) : FdFile(std::move(other)) {
73 : FdFile(fd, path, check_usage, read_only_mode) {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
CapsuleData.py 116 FdFile = FdObj.GenFd()
117 return FdFile
119 FdFile = GenFdsGlobalVariable.ReplaceWorkspaceMacro(self.FdName)
120 return FdFile
  /art/profman/
profman.cc 447 unix_file::FdFile out_fd(dump_output_to_fd_, false /*check_usage*/);
574 unix_file::FdFile out_fd(dump_output_to_fd_, false /*check_usage*/);
    [all...]

Completed in 246 milliseconds