Searched refs:verify_opcode (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/source/Host/common/ |
| H A D | NativeProcessProtocol.cpp | 404 llvm::SmallVector<uint8_t, 4> verify_opcode(saved.size(), 0); in RemoveSoftwareBreakpoint() local 406 error = ReadMemory(addr, verify_opcode.data(), verify_opcode.size(), in RemoveSoftwareBreakpoint() 408 if (error.Fail() || verify_bytes_read < verify_opcode.size()) { in RemoveSoftwareBreakpoint() 411 addr, verify_opcode.size(), verify_bytes_read); in RemoveSoftwareBreakpoint() 413 if (verify_opcode != saved) in RemoveSoftwareBreakpoint()
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | Process.cpp | 1878 uint8_t verify_opcode[8]; in DisableSoftwareBreakpoint() local 1879 assert(break_op_size < sizeof(verify_opcode)); in DisableSoftwareBreakpoint() 1881 if (DoReadMemory(bp_addr, verify_opcode, break_op_size, error) == in DisableSoftwareBreakpoint() 1884 if (::memcmp(bp_site->GetSavedOpcodeBytes(), verify_opcode, in DisableSoftwareBreakpoint()
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/ |
| H A D | MachProcess.mm | 2010 uint8_t verify_opcode[break_op_size]; 2012 if (m_task.ReadMemory(addr, break_op_size, verify_opcode) == 2015 if (memcmp(bp->SavedOpcodeBytes(), verify_opcode, break_op_size) ==
|