/external/llvm-project/lldb/tools/debugserver/source/ |
D | DNBBreakpoint.h | 40 if (IsBreakpoint() && IsEnabled() && !IsHardware()) { in IntersectsRange() 89 bool IsHardware() const { return m_hw_index != INVALID_NUB_HW_INDEX; } in IsHardware() function
|
D | DNBBreakpoint.cpp | 35 IsHardware() ? "hardware" : "software", GetHardwareIndex()); in Dump() 41 IsHardware() ? "hardware" : "software", m_watch_read ? "r" : "", in Dump()
|
D | ChangeLog | 726 (DNBBreakpoint::IsHardware()): New accessor.
|
/external/llvm-project/lldb/include/lldb/Breakpoint/ |
D | StoppointSite.h | 39 virtual bool IsHardware() const = 0;
|
D | BreakpointSite.h | 186 bool IsHardware() const override { in IsHardware() function
|
D | Watchpoint.h | 75 bool IsHardware() const override;
|
D | Breakpoint.h | 510 bool IsHardware() const { return m_hardware; } in IsHardware() function
|
/external/llvm-project/lldb/source/Breakpoint/ |
D | BreakpointLocation.cpp | 449 process->CreateBreakpointSite(shared_from_this(), m_owner.IsHardware()); in ResolveBreakpointSite() 596 bool is_hardware = is_resolved && m_bp_site_sp->IsHardware(); in GetDescription() 627 bool is_hardware = is_resolved && m_bp_site_sp->IsHardware(); in Dump()
|
D | BreakpointSite.cpp | 80 GetID(), (uint64_t)m_addr, IsHardware() ? "hardware" : "software", in Dump()
|
D | Watchpoint.cpp | 96 bool Watchpoint::IsHardware() const { in IsHardware() function in Watchpoint
|
D | BreakpointLocationList.cpp | 36 m_owner.IsHardware(), resolve_indirect_symbols)); in Create()
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/require_hw_breakpoints/ |
D | TestRequireHWBreakpoints.py | 28 self.assertTrue(breakpoint.IsHardware())
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBBreakpoint.h | 140 bool IsHardware() const;
|
/external/llvm-project/lldb/source/Target/ |
D | ThreadPlanStepThrough.cpp | 58 if (return_bp->IsHardware() && !return_bp->HasResolvedLocations()) in ThreadPlanStepThrough()
|
D | ThreadPlanRunToAddress.cpp | 68 if (breakpoint->IsHardware() && !breakpoint->HasResolvedLocations()) in SetInitialBreakpoints()
|
D | ThreadPlanStepUntil.cpp | 54 if (return_bp->IsHardware() && !return_bp->HasResolvedLocations()) in ThreadPlanStepUntil()
|
D | ThreadPlanStepRange.cpp | 356 if (m_next_branch_bp_sp->IsHardware() && in SetNextBranchBreakpoint()
|
D | ThreadPlanStepOut.cpp | 144 if (return_bp->IsHardware() && !return_bp->HasResolvedLocations()) in ThreadPlanStepOut()
|
D | Process.cpp | 1947 if (bp_site->IsHardware()) { in DisableSoftwareBreakpoint()
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBBreakpoint.i | 258 IsHardware ();
|
/external/llvm-project/lldb/source/API/ |
D | SBBreakpoint.cpp | 810 bool SBBreakpoint::IsHardware() const { in IsHardware() function in SBBreakpoint 811 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBBreakpoint, IsHardware); in IsHardware() 815 return bkpt_sp->IsHardware(); in IsHardware() 1074 LLDB_REGISTER_METHOD_CONST(bool, SBBreakpoint, IsHardware, ()); in RegisterMethods()
|
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
D | MachThread.cpp | 563 if (bp != NULL && bp->IsHardware()) { in DisableHardwareBreakpoint() 572 if (wp != NULL && wp->IsHardware()) in DisableHardwareWatchpoint()
|
D | MachProcess.mm | 1911 if (bp->IsHardware()) { 2046 if (wp->IsHardware()) { 2088 if (bp->IsHardware()) { 2162 if (wp->IsHardware()) {
|
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
D | ProcessFreeBSD.cpp | 768 if (wp->IsHardware()) { in DisableWatchpoint()
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | ProcessGDBRemote.cpp | 3311 if (wp->IsHardware()) { in DisableWatchpoint()
|