Searched refs:verify_opcode (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/lldb/source/Host/common/ |
D | NativeProcessProtocol.cpp | 422 llvm::SmallVector<uint8_t, 4> verify_opcode(saved.size(), 0); in RemoveSoftwareBreakpoint() local 424 error = ReadMemory(addr, verify_opcode.data(), verify_opcode.size(), in RemoveSoftwareBreakpoint() 426 if (error.Fail() || verify_bytes_read < verify_opcode.size()) { in RemoveSoftwareBreakpoint() 429 addr, verify_opcode.size(), verify_bytes_read); in RemoveSoftwareBreakpoint() 431 if (verify_opcode != saved) in RemoveSoftwareBreakpoint()
|
/external/llvm-project/lldb/source/Target/ |
D | Process.cpp | 1982 uint8_t verify_opcode[8]; in DisableSoftwareBreakpoint() local 1983 assert(break_op_size < sizeof(verify_opcode)); in DisableSoftwareBreakpoint() 1985 if (DoReadMemory(bp_addr, verify_opcode, break_op_size, error) == in DisableSoftwareBreakpoint() 1988 if (::memcmp(bp_site->GetSavedOpcodeBytes(), verify_opcode, in DisableSoftwareBreakpoint()
|
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
D | MachProcess.mm | 1979 uint8_t verify_opcode[break_op_size]; 1981 if (m_task.ReadMemory(addr, break_op_size, verify_opcode) == 1984 if (memcmp(bp->SavedOpcodeBytes(), verify_opcode, break_op_size) ==
|