Searched refs:m_Handler (Results 1 - 7 of 7) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp30 m_Handler(-1),
89 m_Handler = sys::fs::detail::open(pPath, oflag(pMode));
91 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), (int)pPerm);
94 if (-1 == m_Handler) {
100 if (!get_size(m_Handler, m_Size)) {
115 m_Handler = pFD;
119 if (!get_size(m_Handler, m_Size)) {
135 if (-1 == ::close(m_Handler)) {
155 if (-1 == sys::fs::detail::ftruncate(m_Handler, pSize)) {
174 ssize_t read_bytes = sys::fs::detail::pread(m_Handler,
[all...]
H A DDirectory.cpp39 m_Handler(0),
50 m_Handler(0),
63 m_Handler(0),
76 return (0 != m_Handler);
/frameworks/compile/mclinker/lib/Support/Unix/
H A DFileSystem.inc63 pDir.m_Handler = reinterpret_cast<intptr_t>(opendir(pDir.path().c_str()));
64 if (0 == pDir.m_Handler) {
72 switch (read_dir(pDir.m_Handler, path)) {
94 if (pDir.m_Handler)
95 closedir(reinterpret_cast<DIR *>(pDir.m_Handler));
96 pDir.m_Handler = 0;
190 pMemBuffer = ::mmap(NULL, pLength, prot, flag, m_Handler, pStartOffset);
/frameworks/compile/mclinker/lib/Support/Windows/
H A DFileSystem.inc49 pDir.m_Handler = reinterpret_cast<intptr_t>(hFile);
67 if (pDir.m_Handler)
68 FindClose(reinterpret_cast<HANDLE>(pDir.m_Handler));
69 pDir.m_Handler = 0;
/frameworks/compile/mclinker/include/mcld/Support/
H A DFileHandle.h107 { return m_Handler; }
132 int m_Handler; member in class:mcld::FileHandle
H A DDirectory.h89 intptr_t m_Handler; member in class:mcld::sys::fs::Directory
/frameworks/compile/mclinker/lib/MC/
H A DMCLDDirectory.cpp80 Directory::m_Handler = 0; member in class:Directory

Completed in 469 milliseconds