Searched refs:m_software_breakpoints (Results 1 – 2 of 2) sorted by relevance
364 auto it = m_software_breakpoints.find(addr); in SetSoftwareBreakpoint()365 if (it != m_software_breakpoints.end()) { in SetSoftwareBreakpoint()373 m_software_breakpoints.emplace(addr, std::move(*expected_bkpt)); in SetSoftwareBreakpoint()380 auto it = m_software_breakpoints.find(addr); in RemoveSoftwareBreakpoint()381 if (it == m_software_breakpoints.end()) in RemoveSoftwareBreakpoint()437 m_software_breakpoints.erase(it); in RemoveSoftwareBreakpoint()602 if (m_software_breakpoints.count(breakpoint_addr) == 0) { in FixupBreakpointPCAsNeeded()646 for (const auto &pair : m_software_breakpoints) { in ReadMemoryWithoutTrap()
407 std::unordered_map<lldb::addr_t, SoftwareBreakpoint> m_software_breakpoints; variable