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.cpp405 size_t verify_bytes_read = 0; in RemoveSoftwareBreakpoint() local
407 verify_bytes_read); in RemoveSoftwareBreakpoint()
408 if (error.Fail() || verify_bytes_read < verify_opcode.size()) { in RemoveSoftwareBreakpoint()
411 addr, verify_opcode.size(), verify_bytes_read); in RemoveSoftwareBreakpoint()
470 size_t verify_bytes_read = 0; in EnableSoftwareBreakpoint() local
472 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
477 if (verify_bytes_read != verify_bp_opcode_bytes.size()) { in EnableSoftwareBreakpoint()
483 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
486 if (llvm::ArrayRef(verify_bp_opcode_bytes.data(), verify_bytes_read) != in EnableSoftwareBreakpoint()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp1993 const size_t verify_bytes_read = in ReadMemory() local
1996 assert(cache_bytes_read == verify_bytes_read); in ReadMemory()