Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
HDNativeProcessProtocol.cpp372 llvm::SmallVector<uint8_t, 4> curr_break_op( in RemoveSoftwareBreakpoint() local
378 ReadMemory(addr, curr_break_op.data(), curr_break_op.size(), bytes_read); in RemoveSoftwareBreakpoint()
379 if (error.Fail() || bytes_read < curr_break_op.size()) { in RemoveSoftwareBreakpoint()
382 addr, curr_break_op.size(), bytes_read); in RemoveSoftwareBreakpoint()
386 if (llvm::ArrayRef(curr_break_op) != it->second.breakpoint_opcodes) { in RemoveSoftwareBreakpoint()
387 if (curr_break_op != it->second.saved_opcodes) in RemoveSoftwareBreakpoint()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
HDProcess.cpp1894 uint8_t curr_break_op[8]; in DisableSoftwareBreakpoint() local
1895 assert(break_op_size <= sizeof(curr_break_op)); in DisableSoftwareBreakpoint()
1899 if (DoReadMemory(bp_addr, curr_break_op, break_op_size, error) == in DisableSoftwareBreakpoint()
1903 if (::memcmp(curr_break_op, break_op, break_op_size) == 0) { in DisableSoftwareBreakpoint()