Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Host/common/
DNativeProcessProtocol.cpp423 size_t verify_bytes_read = 0; in RemoveSoftwareBreakpoint() local
425 verify_bytes_read); in RemoveSoftwareBreakpoint()
426 if (error.Fail() || verify_bytes_read < verify_opcode.size()) { in RemoveSoftwareBreakpoint()
429 addr, verify_opcode.size(), verify_bytes_read); in RemoveSoftwareBreakpoint()
488 size_t verify_bytes_read = 0; in EnableSoftwareBreakpoint() local
490 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
495 if (verify_bytes_read != verify_bp_opcode_bytes.size()) { in EnableSoftwareBreakpoint()
501 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
504 if (llvm::makeArrayRef(verify_bp_opcode_bytes.data(), verify_bytes_read) != in EnableSoftwareBreakpoint()
/external/llvm-project/lldb/source/Target/
DProcess.cpp2050 const size_t verify_bytes_read = in ReadMemory() local
2053 assert(cache_bytes_read == verify_bytes_read); in ReadMemory()