Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp391 size_t verify_bytes_read = 0; in RemoveSoftwareBreakpoint() local
393 verify_bytes_read); in RemoveSoftwareBreakpoint()
394 if (error.Fail() || verify_bytes_read < verify_opcode.size()) { in RemoveSoftwareBreakpoint()
397 addr, verify_opcode.size(), verify_bytes_read); in RemoveSoftwareBreakpoint()
456 size_t verify_bytes_read = 0; in EnableSoftwareBreakpoint() local
458 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
463 if (verify_bytes_read != verify_bp_opcode_bytes.size()) { in EnableSoftwareBreakpoint()
469 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
472 if (llvm::makeArrayRef(verify_bp_opcode_bytes.data(), verify_bytes_read) != in EnableSoftwareBreakpoint()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp1915 const size_t verify_bytes_read = in ReadMemory() local
1918 assert(cache_bytes_read == verify_bytes_read); in ReadMemory()