Searched refs:m_Handler (Results 1 – 9 of 9) sorted by relevance
/frameworks/compile/mclinker/lib/Support/ |
D | FileHandle.cpp | 31 m_Handler(-1), in FileHandle() 86 m_Handler = sys::fs::detail::open(pPath, oflag(pMode)); in open() 88 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), in open() 92 if (m_Handler == -1) { in open() 98 if (!get_size(m_Handler, m_Size)) { in open() 112 m_Handler = pFD; in delegate() 116 if (!get_size(m_Handler, m_Size)) { in delegate() 131 if (::close(m_Handler) == -1) { in close() 150 if (sys::fs::detail::ftruncate(m_Handler, pSize) == -1) { in truncate() 169 sys::fs::detail::pread(m_Handler, pMemBuffer, pLength, pStartOffset); in read() [all …]
|
D | Directory.cpp | 38 m_Handler(0), in Directory() 47 m_Handler(0), in Directory() 64 m_Handler(0), in Directory() 75 return (0 != m_Handler); in isGood()
|
/frameworks/compile/mclinker/lib/Support/Unix/ |
D | FileSystem.inc | 65 pDir.m_Handler = reinterpret_cast<intptr_t>(opendir(pDir.path().c_str())); 66 if (0 == pDir.m_Handler) { 74 switch (read_dir(pDir.m_Handler, path)) { 96 if (pDir.m_Handler) 97 closedir(reinterpret_cast<DIR*>(pDir.m_Handler)); 98 pDir.m_Handler = 0; 182 pMemBuffer = ::mmap(NULL, pLength, prot, flag, m_Handler, pStartOffset);
|
D | PathV3.inc | 192 switch (read_dir(pIter.m_pParent->m_Handler, path)) {
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
D | FileSystem.inc | 50 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 | 164 if (FindNextFile(reinterpret_cast<HANDLE>(pIter.m_pParent->m_Handler),
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | FileHandle.h | 98 int handler() const { return m_Handler; } in handler() 122 int m_Handler; variable
|
D | Directory.h | 93 intptr_t m_Handler; variable
|
/frameworks/compile/mclinker/lib/MC/ |
D | MCLDDirectory.cpp | 76 Directory::m_Handler = 0; in assign()
|