Home
last modified time | relevance | path

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

/external/lldb/tools/debugserver/source/MacOSX/
DMachProcess.cpp843 uint8_t curr_break_op[break_op_size]; in DisableBreakpoint() local
847 if (m_task.ReadMemory(addr, break_op_size, curr_break_op) == break_op_size) in DisableBreakpoint()
853 if (memcmp(curr_break_op, break_op, break_op_size) == 0) in DisableBreakpoint()
/external/lldb/source/Target/
DProcess.cpp2240 uint8_t curr_break_op[8]; in DisableSoftwareBreakpoint() local
2241 assert (break_op_size <= sizeof(curr_break_op)); in DisableSoftwareBreakpoint()
2245 if (DoReadMemory (bp_addr, curr_break_op, break_op_size, error) == break_op_size) in DisableSoftwareBreakpoint()
2249 if (::memcmp (curr_break_op, break_op, break_op_size) == 0) in DisableSoftwareBreakpoint()