Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp404 size_t verify_bytes_read = 0; in RemoveSoftwareBreakpoint() local
406 verify_bytes_read); in RemoveSoftwareBreakpoint()
407 if (error.Fail() || verify_bytes_read < verify_opcode.size()) { in RemoveSoftwareBreakpoint()
410 addr, verify_opcode.size(), verify_bytes_read); in RemoveSoftwareBreakpoint()
469 size_t verify_bytes_read = 0; in EnableSoftwareBreakpoint() local
471 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
476 if (verify_bytes_read != verify_bp_opcode_bytes.size()) { in EnableSoftwareBreakpoint()
482 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
485 if (llvm::makeArrayRef(verify_bp_opcode_bytes.data(), verify_bytes_read) != in EnableSoftwareBreakpoint()
/llvm-project-15.0.7/lldb/source/Target/
H A DProcess.cpp1945 const size_t verify_bytes_read = in ReadMemory() local
1948 assert(cache_bytes_read == verify_bytes_read); in ReadMemory()