Home
last modified time | relevance | path

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

12345678910>>...17

/dports/emulators/mess/mame-mame0226/src/emu/
H A Daddrmap.cpp185 m_read.m_tag = tag; in m()
214 m_read.m_bits = 8; in r()
234 m_read.m_bits = 8; in r()
254 m_read.m_bits = 8; in r()
274 m_read.m_bits = 8; in r()
294 m_read.m_bits = 8; in r()
314 m_read.m_bits = 8; in r()
340 m_read.m_bits = 16; in r()
360 m_read.m_bits = 16; in r()
380 m_read.m_bits = 16; in r()
[all …]
/dports/emulators/mame/mame-mame0226/src/emu/
H A Daddrmap.cpp185 m_read.m_tag = tag; in m()
214 m_read.m_bits = 8; in r()
234 m_read.m_bits = 8; in r()
254 m_read.m_bits = 8; in r()
274 m_read.m_bits = 8; in r()
294 m_read.m_bits = 8; in r()
314 m_read.m_bits = 8; in r()
340 m_read.m_bits = 16; in r()
360 m_read.m_bits = 16; in r()
380 m_read.m_bits = 16; in r()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/security/permissions/
H A Denvironmentpermission.cs104 m_read = null; in SetPathList()
119 if (m_read == null) in AddPathList()
140 if (m_read == null) in GetPathList()
144 return m_read.ToString(); in GetPathList()
192 (this.m_read == null || this.m_read.IsEmpty()) && in IsEmpty()
229 return ((this.m_read == null || this.m_read.IsSubsetOf( operand.m_read )) && in IsSubsetOf()
267 …StringExpressionSet intersectRead = this.m_read == null ? null : this.m_read.Intersect( operand.m_… in Intersect()
306 …StringExpressionSet unionRead = this.m_read == null ? operand.m_read : this.m_read.Union( operand. in Union()
335 copy.m_read = this.m_read.Copy(); in Copy()
352 if (this.m_read != null && !this.m_read.IsEmpty()) in ToXml()
[all …]
H A Dregistrypermission.cs39 private StringExpressionSet m_read; field in System.Security.Permissions.RegistryPermission
85 m_read = null; in SetPathList()
123 if (m_read == null) in AddPathList()
168 if (m_read == null) in GetPathList()
220 (this.m_read == null || this.m_read.IsEmpty()) && in IsEmpty()
261 return ((this.m_read == null || this.m_read.IsSubsetOf( operand.m_read )) && in IsSubsetOf()
294 …StringExpressionSet intersectRead = this.m_read == null ? null : this.m_read.Intersect( operand.m_… in Intersect()
342 …StringExpressionSet unionRead = this.m_read == null ? operand.m_read : this.m_read.Union( operand. in Union()
381 copy.m_read = this.m_read.Copy(); in Copy()
412 if (this.m_read != null && !this.m_read.IsEmpty()) in ToXml()
[all …]
H A Dfileiopermission.cs149 m_read = null; in SetPathList()
355 if (m_read != null && m_read.AllLocalFiles)
444 if (m_read != null && m_read.AllFiles)
609 (this.m_read == null || this.m_read.IsEmpty()) && in IsEmpty()
650 return ((this.m_read == null || this.m_read.IsSubsetOf(operand.m_read)) && in IsSubsetOf()
681 … FileIOAccess intersectRead = this.m_read == null ? null : this.m_read.Intersect(operand.m_read); in Intersect()
729 … FileIOAccess unionRead = this.m_read == null ? operand.m_read : this.m_read.Union(operand.m_read); in Union()
770 copy.m_read = this.m_read.Copy(); in Copy()
802 if (this.m_read != null && !this.m_read.IsEmpty()) in ToXml()
938 if (perm.m_read != null && !perm.m_read.IsEmpty()) in Equals()
[all …]
/dports/emulators/mess/mame-mame0226/3rdparty/bx/include/bx/inline/
H A Dringbuffer.inl16 , m_read(0)
37 m_read = read;
79 m_read = 0;
86 , m_read(0)
107 m_read = read;
153 m_read = 0;
159 , m_read(_control.m_read)
185 if (eof < m_read)
195 m_read = eof;
201 m_read += _len;
[all …]
/dports/emulators/mame/mame-mame0226/3rdparty/bx/include/bx/inline/
H A Dringbuffer.inl16 , m_read(0)
37 m_read = read;
79 m_read = 0;
86 , m_read(0)
107 m_read = read;
153 m_read = 0;
159 , m_read(_control.m_read)
185 if (eof < m_read)
195 m_read = eof;
201 m_read += _len;
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/source/Host/windows/
H A DPipeWindows.cpp39 : m_read((HANDLE)read), m_write((HANDLE)write), in PipeWindows()
53 m_read = INVALID_HANDLE_VALUE; in PipeWindows()
72 BOOL result = ::CreatePipe(&m_read, &m_write, &sa, 1024); in CreateNew()
76 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
113 m_read = ::CreateNamedPipeA( in CreateNew()
116 if (INVALID_HANDLE_VALUE == m_read) in CreateNew()
118 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
191 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe()
223 m_read = INVALID_HANDLE_VALUE; in ReleaseReadFileDescriptor()
246 m_read = INVALID_HANDLE_VALUE; in CloseReadFileDescriptor()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/lldb/source/Host/windows/
H A DPipeWindows.cpp39 : m_read((HANDLE)read), m_write((HANDLE)write), in PipeWindows()
53 m_read = INVALID_HANDLE_VALUE; in PipeWindows()
72 BOOL result = ::CreatePipe(&m_read, &m_write, &sa, 1024); in CreateNew()
76 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
113 m_read = ::CreateNamedPipeA( in CreateNew()
116 if (INVALID_HANDLE_VALUE == m_read) in CreateNew()
118 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
191 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe()
223 m_read = INVALID_HANDLE_VALUE; in ReleaseReadFileDescriptor()
246 m_read = INVALID_HANDLE_VALUE; in CloseReadFileDescriptor()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/lldb/source/Host/windows/
H A DPipeWindows.cpp39 : m_read((HANDLE)read), m_write((HANDLE)write), in PipeWindows()
53 m_read = INVALID_HANDLE_VALUE; in PipeWindows()
72 BOOL result = ::CreatePipe(&m_read, &m_write, &sa, 1024); in CreateNew()
76 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
113 m_read = ::CreateNamedPipeA( in CreateNew()
116 if (INVALID_HANDLE_VALUE == m_read) in CreateNew()
118 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
191 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe()
223 m_read = INVALID_HANDLE_VALUE; in ReleaseReadFileDescriptor()
246 m_read = INVALID_HANDLE_VALUE; in CloseReadFileDescriptor()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/lldb/source/Host/windows/
H A DPipeWindows.cpp39 : m_read((HANDLE)read), m_write((HANDLE)write), in PipeWindows()
53 m_read = INVALID_HANDLE_VALUE; in PipeWindows()
72 BOOL result = ::CreatePipe(&m_read, &m_write, &sa, 1024); in CreateNew()
76 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
113 m_read = ::CreateNamedPipeA( in CreateNew()
116 if (INVALID_HANDLE_VALUE == m_read) in CreateNew()
118 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
191 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe()
223 m_read = INVALID_HANDLE_VALUE; in ReleaseReadFileDescriptor()
246 m_read = INVALID_HANDLE_VALUE; in CloseReadFileDescriptor()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/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 …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/lldb/source/Host/windows/
H A DPipeWindows.cpp39 : m_read((HANDLE)read), m_write((HANDLE)write), in PipeWindows()
53 m_read = INVALID_HANDLE_VALUE; in PipeWindows()
72 BOOL result = ::CreatePipe(&m_read, &m_write, &sa, 1024); in CreateNew()
76 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
113 m_read = ::CreateNamedPipeA( in CreateNew()
116 if (INVALID_HANDLE_VALUE == m_read) in CreateNew()
118 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
191 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe()
223 m_read = INVALID_HANDLE_VALUE; in ReleaseReadFileDescriptor()
246 m_read = INVALID_HANDLE_VALUE; in CloseReadFileDescriptor()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/lldb/source/Host/windows/
H A DPipeWindows.cpp39 : m_read((HANDLE)read), m_write((HANDLE)write), in PipeWindows()
53 m_read = INVALID_HANDLE_VALUE; in PipeWindows()
72 BOOL result = ::CreatePipe(&m_read, &m_write, &sa, 1024); in CreateNew()
76 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
113 m_read = ::CreateNamedPipeA( in CreateNew()
116 if (INVALID_HANDLE_VALUE == m_read) in CreateNew()
118 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
191 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe()
223 m_read = INVALID_HANDLE_VALUE; in ReleaseReadFileDescriptor()
246 m_read = INVALID_HANDLE_VALUE; in CloseReadFileDescriptor()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/lldb/source/Host/windows/
H A DPipeWindows.cpp39 : m_read((HANDLE)read), m_write((HANDLE)write), in PipeWindows()
53 m_read = INVALID_HANDLE_VALUE; in PipeWindows()
72 BOOL result = ::CreatePipe(&m_read, &m_write, &sa, 1024); in CreateNew()
76 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
113 m_read = ::CreateNamedPipeA( in CreateNew()
116 if (INVALID_HANDLE_VALUE == m_read) in CreateNew()
118 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
191 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe()
223 m_read = INVALID_HANDLE_VALUE; in ReleaseReadFileDescriptor()
246 m_read = INVALID_HANDLE_VALUE; in CloseReadFileDescriptor()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/lldb/source/Host/windows/
H A DPipeWindows.cpp39 : m_read((HANDLE)read), m_write((HANDLE)write), in PipeWindows()
53 m_read = INVALID_HANDLE_VALUE; in PipeWindows()
72 BOOL result = ::CreatePipe(&m_read, &m_write, &sa, 1024); in CreateNew()
76 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
113 m_read = ::CreateNamedPipeA( in CreateNew()
116 if (INVALID_HANDLE_VALUE == m_read) in CreateNew()
118 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
191 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe()
223 m_read = INVALID_HANDLE_VALUE; in ReleaseReadFileDescriptor()
246 m_read = INVALID_HANDLE_VALUE; in CloseReadFileDescriptor()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/lldb/source/Host/windows/
H A DPipeWindows.cpp39 : m_read((HANDLE)read), m_write((HANDLE)write), in PipeWindows()
53 m_read = INVALID_HANDLE_VALUE; in PipeWindows()
72 BOOL result = ::CreatePipe(&m_read, &m_write, &sa, 1024); in CreateNew()
76 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
113 m_read = ::CreateNamedPipeA( in CreateNew()
116 if (INVALID_HANDLE_VALUE == m_read) in CreateNew()
118 m_read_fd = _open_osfhandle((intptr_t)m_read, _O_RDONLY); in CreateNew()
191 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe()
223 m_read = INVALID_HANDLE_VALUE; in ReleaseReadFileDescriptor()
246 m_read = INVALID_HANDLE_VALUE; in CloseReadFileDescriptor()
[all …]
/dports/games/warmux/warmux-11.04/lib/warmux/action/
H A Daction.cpp78 m_write = m_read = m_var = NULL; in ~Action()
102 m_read = m_write = m_var = NULL; in Action()
111 m_write = m_read = m_var = NULL; in Init()
126 m_read = m_var; in Resize()
228 uint32_t tmp = SDLNet_Read32(m_read); m_read += 4; in PopInt()
250 tmp.u32[i] = SDLNet_Read32(m_read); in PopDouble()
252 tmp.u32[len-1-i] = SDLNet_Read32(m_read); in PopDouble()
254 m_read += 4; in PopDouble()
270 uint16_t length = SDLNet_Read16(m_read); m_read += 2; in PopString()
277 std::string str((char*)m_read, length); in PopString()
[all …]
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/libs/stream/
H A Dmemstream.h56 const char* m_read; variable
60 : m_read(buffer), m_end(buffer + length) { in BufferInputStream()
64 : m_read(buffer.c_str()), m_end(buffer.c_str() + buffer.size()) { in BufferInputStream()
67 std::size_t count = std::min(std::size_t(m_end - m_read), length); in read()
68 const char* end = m_read + count; in read()
69 while (m_read != end) { in read()
70 *buffer++ = *m_read++; in read()
/dports/devel/libe/e-releases-0.11.0/e/
H A Dflagfd.h45 : m_read() in flagfd()
58 m_read = fds[0]; in flagfd()
64 bool valid() const { return m_read.get() >= 0; } in valid()
66 int poll_fd() { return m_read.get(); } in poll_fd()
84 while (m_read.read(buf, 32) == 32) in clear()
92 po6::io::fd m_read;
/dports/databases/p5-Redis-Fast/Redis-Fast-0.31/deps/hiredis/adapters/
H A Dqt.h73 : QObject(parent), m_ctx(0), m_read(0), m_write(0) { } in QObject()
97 if (m_read) return; in addRead()
98 m_read = new QSocketNotifier(m_ctx->c.fd, QSocketNotifier::Read, 0); in addRead()
99 connect(m_read, SIGNAL(activated(int)), this, SLOT(read())); in addRead()
103 if (!m_read) return; in delRead()
104 delete m_read; in delRead() local
105 m_read = 0; in delRead()
131 QSocketNotifier * m_read; variable
/dports/databases/redis6/redis-6.0.16/deps/hiredis/adapters/
H A Dqt.h73 : QObject(parent), m_ctx(0), m_read(0), m_write(0) { } in QObject()
97 if (m_read) return; in addRead()
98 m_read = new QSocketNotifier(m_ctx->c.fd, QSocketNotifier::Read, 0); in addRead()
99 connect(m_read, SIGNAL(activated(int)), this, SLOT(read())); in addRead()
103 if (!m_read) return; in delRead()
104 delete m_read; in delRead() local
105 m_read = 0; in delRead()
131 QSocketNotifier * m_read; variable
/dports/databases/redisdesktopmanager/RedisDesktopManager-2021.8/3rdparty/qredisclient/3rdparty/hiredis/adapters/
H A Dqt.h73 : QObject(parent), m_ctx(0), m_read(0), m_write(0) { } in QObject()
97 if (m_read) return; in addRead()
98 m_read = new QSocketNotifier(m_ctx->c.fd, QSocketNotifier::Read, 0); in addRead()
99 connect(m_read, SIGNAL(activated(int)), this, SLOT(read())); in addRead()
103 if (!m_read) return; in delRead()
104 delete m_read; in delRead() local
105 m_read = 0; in delRead()
131 QSocketNotifier * m_read; variable
/dports/databases/redis-devel/redis-0e5b813/deps/hiredis/adapters/
H A Dqt.h73 : QObject(parent), m_ctx(0), m_read(0), m_write(0) { } in QObject()
97 if (m_read) return; in addRead()
98 m_read = new QSocketNotifier(m_ctx->c.fd, QSocketNotifier::Read, 0); in addRead()
99 connect(m_read, SIGNAL(activated(int)), this, SLOT(read())); in addRead()
103 if (!m_read) return; in delRead()
104 delete m_read; in delRead() local
105 m_read = 0; in delRead()
131 QSocketNotifier * m_read; variable
/dports/databases/redis5/redis-5.0.14/deps/hiredis/adapters/
H A Dqt.h73 : QObject(parent), m_ctx(0), m_read(0), m_write(0) { } in QObject()
97 if (m_read) return; in addRead()
98 m_read = new QSocketNotifier(m_ctx->c.fd, QSocketNotifier::Read, 0); in addRead()
99 connect(m_read, SIGNAL(activated(int)), this, SLOT(read())); in addRead()
103 if (!m_read) return; in delRead()
104 delete m_read; in delRead() local
105 m_read = 0; in delRead()
131 QSocketNotifier * m_read; variable

12345678910>>...17