Home
last modified time | relevance | path

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

/llvm-project/lldb/source/Host/windows/
H A DPipeWindows.cpp29 : m_read(INVALID_HANDLE_VALUE), m_write(INVALID_HANDLE_VALUE), in PipeWindows()
37 : m_read((HANDLE)read), m_write((HANDLE)write), in PipeWindows()
51 m_read = INVALID_HANDLE_VALUE; in PipeWindows()
97 m_read = in CreateNew()
103 if (INVALID_HANDLE_VALUE == m_read) in CreateNew()
105 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
176 m_read = ::CreateFileA(pipe_path.c_str(), GENERIC_READ, 0, &attributes, in OpenNamedPipe()
178 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe()
181 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in OpenNamedPipe()
211 m_read in GetReadFileDescriptor()
[all...]
/llvm-project/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()
60 void SetReadable(OptionalBool val) { m_read = val; } in SetWritable()
88 if (m_read == eYes) in GetLLDBPermissions()
100 m_read = (permissions & lldb::ePermissionsReadable) ? eYes : eNo;
106 return m_range == rhs.m_range && m_read == rhs.m_read &&
146 OptionalBool m_read = eDontKnow;
141 OptionalBool m_read = eDontKnow; global() variable
/llvm-project/lldb/source/API/
H A DSBWatchpointOptions.cpp20 bool m_read = false; member in WatchpointOptionsImpl
49 m_opaque_up->m_read = read; in SetWatchpointTypeRead()
52 return m_opaque_up->m_read; in GetWatchpointTypeRead()
/llvm-project/lldb/include/lldb/Host/windows/
H A DPipeWindows.h48 lldb::pipe_t GetReadPipe() const override { return lldb::pipe_t(m_read); }
78 HANDLE m_read;
77 HANDLE m_read; global() variable