Home
last modified time | relevance | path

Searched refs:verify_bytes_read (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp407 size_t verify_bytes_read = 0; in RemoveSoftwareBreakpoint() local
409 verify_bytes_read); in RemoveSoftwareBreakpoint()
410 if (error.Fail() || verify_bytes_read < verify_opcode.size()) { in RemoveSoftwareBreakpoint()
414 addr, verify_opcode.size(), verify_bytes_read); in RemoveSoftwareBreakpoint()
473 size_t verify_bytes_read = 0; in EnableSoftwareBreakpoint() local
475 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
480 if (verify_bytes_read != verify_bp_opcode_bytes.size()) { in EnableSoftwareBreakpoint()
486 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
489 if (llvm::ArrayRef(verify_bp_opcode_bytes.data(), verify_bytes_read) != in EnableSoftwareBreakpoint()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp1941 const size_t verify_bytes_read = in ReadMemory() local
1944 assert(cache_bytes_read == verify_bytes_read); in ReadMemory()