Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp424 size_t verify_bytes_read = 0; in RemoveSoftwareBreakpoint() local
426 verify_bytes_read); in RemoveSoftwareBreakpoint()
427 if (error.Fail() || verify_bytes_read < verify_opcode.size()) { in RemoveSoftwareBreakpoint()
430 addr, verify_opcode.size(), verify_bytes_read); in RemoveSoftwareBreakpoint()
489 size_t verify_bytes_read = 0; in EnableSoftwareBreakpoint() local
491 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
496 if (verify_bytes_read != verify_bp_opcode_bytes.size()) { in EnableSoftwareBreakpoint()
502 verify_bp_opcode_bytes.size(), verify_bytes_read); in EnableSoftwareBreakpoint()
505 if (llvm::makeArrayRef(verify_bp_opcode_bytes.data(), verify_bytes_read) != in EnableSoftwareBreakpoint()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp2178 const size_t verify_bytes_read = in ReadMemory() local
2181 assert(cache_bytes_read == verify_bytes_read); in ReadMemory()