Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Host/common/
DNativeProcessProtocol.cpp390 llvm::SmallVector<uint8_t, 4> curr_break_op( in RemoveSoftwareBreakpoint() local
396 ReadMemory(addr, curr_break_op.data(), curr_break_op.size(), bytes_read); in RemoveSoftwareBreakpoint()
397 if (error.Fail() || bytes_read < curr_break_op.size()) { in RemoveSoftwareBreakpoint()
400 addr, curr_break_op.size(), bytes_read); in RemoveSoftwareBreakpoint()
404 if (makeArrayRef(curr_break_op) != it->second.breakpoint_opcodes) { in RemoveSoftwareBreakpoint()
405 if (curr_break_op != it->second.saved_opcodes) in RemoveSoftwareBreakpoint()
/external/llvm-project/lldb/source/Target/
DProcess.cpp1954 uint8_t curr_break_op[8]; in DisableSoftwareBreakpoint() local
1955 assert(break_op_size <= sizeof(curr_break_op)); in DisableSoftwareBreakpoint()
1959 if (DoReadMemory(bp_addr, curr_break_op, break_op_size, error) == in DisableSoftwareBreakpoint()
1963 if (::memcmp(curr_break_op, break_op, break_op_size) == 0) { in DisableSoftwareBreakpoint()
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/
DMachProcess.mm1937 uint8_t curr_break_op[break_op_size];
1941 if (m_task.ReadMemory(addr, break_op_size, curr_break_op) ==
1946 if (memcmp(curr_break_op, break_op, break_op_size) == 0) {