Home
last modified time | relevance | path

Searched refs:m_read (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/source/Host/windows/
H A DPipeWindows.cpp37 : m_read((HANDLE)read), m_write((HANDLE)write), in PipeWindows()
51 m_read = INVALID_HANDLE_VALUE; in PipeWindows()
70 BOOL result = ::CreatePipe(&m_read, &m_write, &sa, 1024); in CreateNew()
74 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
111 m_read = ::CreateNamedPipeA( in CreateNew()
114 if (INVALID_HANDLE_VALUE == m_read) in CreateNew()
116 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
189 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe()
221 m_read = INVALID_HANDLE_VALUE; in ReleaseReadFileDescriptor()
244 m_read = INVALID_HANDLE_VALUE; in CloseReadFileDescriptor()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DMemoryRegionInfo.h33 : m_range(range), m_read(read), m_write(write), m_execute(execute), in MemoryRegionInfo()
44 OptionalBool GetReadable() const { return m_read; } in GetReadable()
58 void SetReadable(OptionalBool val) { m_read = val; } in SetReadable()
84 if (m_read) in GetLLDBPermissions()
96 m_read = (permissions & lldb::ePermissionsReadable) ? eYes : eNo; in SetLLDBPermissions()
102 return m_range == rhs.m_range && m_read == rhs.m_read &&
141 OptionalBool m_read = eDontKnow; variable
/llvm-project-15.0.7/lldb/include/lldb/Host/windows/
H A DPipeWindows.h49 lldb::pipe_t GetReadPipe() const override { return lldb::pipe_t(m_read); } in GetReadPipe()
77 HANDLE m_read; variable