Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Support/
DFileHandle.cpp31 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 …]
DDirectory.cpp38 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/
DFileSystem.inc65 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);
DPathV3.inc192 switch (read_dir(pIter.m_pParent->m_Handler, path)) {
/frameworks/compile/mclinker/lib/Support/Windows/
DFileSystem.inc50 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.inc164 if (FindNextFile(reinterpret_cast<HANDLE>(pIter.m_pParent->m_Handler),
/frameworks/compile/mclinker/include/mcld/Support/
DFileHandle.h98 int handler() const { return m_Handler; } in handler()
122 int m_Handler; variable
DDirectory.h93 intptr_t m_Handler; variable
/frameworks/compile/mclinker/lib/MC/
DMCLDDirectory.cpp76 Directory::m_Handler = 0; in assign()