Searched defs:FileHandle (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp1 //===- FileHandle.cpp -----------------------------------------------------===//
10 #include "mcld/Support/FileHandle.h"
27 // FileHandle
29 FileHandle::FileHandle() function in class:mcld::FileHandle
37 FileHandle::~FileHandle() {
42 inline static int oflag(FileHandle::OpenMode pMode) {
44 if (FileHandle::Unknown == pMode)
47 if (FileHandle
[all...]
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dfile_handle.h20 class FileHandle { class in namespace:android::pdx
24 // Constructs an empty FileHandle object.
25 FileHandle() : fd_(kEmptyFileHandle) {} function in class:android::pdx::FileHandle
27 // Constructs a FileHandle from an integer file descriptor and takes
29 explicit FileHandle(int fd) : fd_(fd) {} function in class:android::pdx::FileHandle
31 // Constructs a FileHandle by opening |path|. The arguments follow the
33 FileHandle(const std::string& path, int flags, mode_t mode = 0) { function in class:android::pdx::FileHandle
37 // Constructs a FileHandle by opening |path| relative to |dir_fd|, following
39 FileHandle(const int directory_fd, const std::string& path, int flags, function in class:android::pdx::FileHandle
45 // other FileHandle objec
46 FileHandle(FileHandle&& other) { function in class:android::pdx::FileHandle
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DFileHandle.h1 //===- FileHandle.h -------------------------------------------------------===//
18 /** \class FileHandle
19 * \brief FileHandle class provides an interface for reading from and writing
22 * Operators of FileHandle should neither throw exceptions nor call expressive
25 class FileHandle { class in namespace:mcld
65 FileHandle();
67 ~FileHandle();

Completed in 60 milliseconds