Searched refs:verify_bp_opcode_bytes (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/ |
| H A D | NativeProcessProtocol.cpp | 487 llvm::SmallVector<uint8_t, 4> verify_bp_opcode_bytes(expected_trap->size(), in EnableSoftwareBreakpoint() local 490 error = ReadMemory(addr, verify_bp_opcode_bytes.data(), in EnableSoftwareBreakpoint() 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 D | Process.cpp | 2034 uint8_t verify_bp_opcode_bytes[64]; in EnableSoftwareBreakpoint() local 2035 if (DoReadMemory(bp_addr, verify_bp_opcode_bytes, bp_opcode_size, in EnableSoftwareBreakpoint() 2037 if (::memcmp(bp_opcode_bytes, verify_bp_opcode_bytes, in EnableSoftwareBreakpoint()
|