Home
last modified time | relevance | path

Searched refs:piod_len (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Process/NetBSD/
DNativeProcessNetBSD.cpp834 io.piod_len = size; in ReadMemory()
841 if (error.Fail() || io.piod_len == 0) in ReadMemory()
844 bytes_read += io.piod_len; in ReadMemory()
845 io.piod_len = size - bytes_read; in ReadMemory()
862 io.piod_len = size; in WriteMemory()
870 if (error.Fail() || io.piod_len == 0) in WriteMemory()
873 bytes_written += io.piod_len; in WriteMemory()
874 io.piod_len = size - bytes_written; in WriteMemory()
898 io.piod_len = auxv_size; in GetAuxvData()
905 if (io.piod_len < 1) in GetAuxvData()
/external/llvm-project/lldb/source/Plugins/Process/FreeBSDRemote/
DNativeProcessFreeBSD.cpp788 io.piod_len = size; in ReadMemory()
795 if (error.Fail() || io.piod_len == 0) in ReadMemory()
798 bytes_read += io.piod_len; in ReadMemory()
799 io.piod_len = size - bytes_read; in ReadMemory()
816 io.piod_len = size; in WriteMemory()
824 if (error.Fail() || io.piod_len == 0) in WriteMemory()
827 bytes_written += io.piod_len; in WriteMemory()
828 io.piod_len = size - bytes_written; in WriteMemory()
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DProcessMonitor.cpp73 Get_PT_IO_OP(pi->piod_op), (size_t)pi->piod_offs, pi->piod_len); in PtraceWrapper()
149 pi_desc.piod_len = size; in DoReadMemory()
155 return pi_desc.piod_len; in DoReadMemory()
165 pi_desc.piod_len = size; in DoWriteMemory()
171 return pi_desc.piod_len; in DoWriteMemory()
/external/rust/crates/libc/src/unix/bsd/netbsdlike/
Dmod.rs83 pub piod_len: ::size_t,
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_platform_limits_netbsd.h427 uptr piod_len; member
Dsanitizer_syscalls_netbsd.inc306 PRE_READ(addr->piod_addr, addr->piod_len);
311 PRE_WRITE(addr->piod_addr, addr->piod_len);
359 POST_READ(addr->piod_addr, addr->piod_len);
364 POST_WRITE(addr->piod_addr, addr->piod_len);
/external/rust/crates/libc/src/unix/bsd/freebsdlike/
Dmod.rs272 pub piod_len: ::size_t,