Searched refs:m_Handler (Results 1 – 9 of 9) sorted by relevance
/frameworks/compile/mclinker/lib/Support/ |
D | FileHandle.cpp | 30 m_Handler(-1), in FileHandle() 89 m_Handler = sys::fs::detail::open(pPath, oflag(pMode)); in open() 91 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), (int)pPerm); in open() 94 if (-1 == m_Handler) { in open() 100 if (!get_size(m_Handler, m_Size)) { in open() 115 m_Handler = pFD; in delegate() 119 if (!get_size(m_Handler, m_Size)) { in delegate() 135 if (-1 == ::close(m_Handler)) { in close() 155 if (-1 == sys::fs::detail::ftruncate(m_Handler, pSize)) { in truncate() 174 ssize_t read_bytes = sys::fs::detail::pread(m_Handler, in read() [all …]
|
D | Directory.cpp | 39 m_Handler(0), in Directory() 50 m_Handler(0), in Directory() 63 m_Handler(0), in Directory() 76 return (0 != m_Handler); in isGood()
|
/frameworks/compile/mclinker/lib/Support/Unix/ |
D | FileSystem.inc | 63 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);
|
D | PathV3.inc | 203 switch (read_dir(pIter.m_pParent->m_Handler, path)) {
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | FileHandle.h | 107 { return m_Handler; } in handler() 132 int m_Handler; variable
|
D | Directory.h | 89 intptr_t m_Handler; variable
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
D | FileSystem.inc | 49 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;
|
D | PathV3.inc | 172 if (FindNextFile(reinterpret_cast<HANDLE>(pIter.m_pParent->m_Handler),
|
/frameworks/compile/mclinker/lib/MC/ |
D | MCLDDirectory.cpp | 80 Directory::m_Handler = 0; in assign()
|