Home
last modified time | relevance | path

Searched refs:m_Handler (Results 1 – 9 of 9) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
DFileHandle.cpp30 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 …]
DDirectory.cpp39 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/
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);
DPathV3.inc203 switch (read_dir(pIter.m_pParent->m_Handler, path)) {
/frameworks/compile/mclinker/include/mcld/Support/
DFileHandle.h107 { return m_Handler; } in handler()
132 int m_Handler; variable
DDirectory.h89 intptr_t m_Handler; variable
/frameworks/compile/mclinker/lib/Support/Windows/
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;
DPathV3.inc172 if (FindNextFile(reinterpret_cast<HANDLE>(pIter.m_pParent->m_Handler),
/frameworks/compile/mclinker/lib/MC/
DMCLDDirectory.cpp80 Directory::m_Handler = 0; in assign()