HomeSort by relevance Sort by last modified time
    Searched refs:DNBBreakpoint (Results 1 - 10 of 10) sorted by null

  /external/lldb/tools/debugserver/source/
DNBBreakpoint.h 1 //===-- DNBBreakpoint.h -----------------------------------------*- C++ -*-===//
26 class DNBBreakpoint
29 DNBBreakpoint(nub_addr_t m_addr, nub_size_t byte_size, bool hardware);
30 ~DNBBreakpoint();
136 DNBBreakpoint * Add (nub_addr_t addr, nub_size_t length, bool hardware);
138 DNBBreakpoint * FindByAddress (nub_addr_t addr);
139 const DNBBreakpoint * FindByAddress (nub_addr_t addr) const;
143 std::vector<DNBBreakpoint *> &bps);
158 typedef std::map<nub_addr_t, DNBBreakpoint> collection;
DNBBreakpoint.cpp 1 //===-- DNBBreakpoint.cpp ---------------------------------------*- C++ -*-===//
14 #include "DNBBreakpoint.h"
22 #pragma mark -- DNBBreakpoint
23 DNBBreakpoint::DNBBreakpoint(nub_addr_t addr, nub_size_t byte_size, bool hardware) :
37 DNBBreakpoint::~DNBBreakpoint()
42 DNBBreakpoint::Dump() const
46 DNBLog ("DNBBreakpoint addr = 0x%llx state = %s type = %s breakpoint hw_index = %i",
54 DNBLog ("DNBBreakpoint addr = 0x%llx size = %llu state = %s type = %s watchpoint (%s%s) hw_index = %i"
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
MachThread.h 31 class DNBBreakpoint;
65 DNBBreakpoint * CurrentBreakpoint();
66 uint32_t EnableHardwareBreakpoint (const DNBBreakpoint *breakpoint);
67 uint32_t EnableHardwareWatchpoint (const DNBBreakpoint *watchpoint, bool also_set_on_task);
68 bool DisableHardwareBreakpoint (const DNBBreakpoint *breakpoint);
69 bool DisableHardwareWatchpoint (const DNBBreakpoint *watchpoint, bool also_set_on_task);
95 void NotifyBreakpointChanged (const DNBBreakpoint *bp)
MachThreadList.h 48 void NotifyBreakpointChanged (const DNBBreakpoint *bp);
49 uint32_t EnableHardwareBreakpoint (const DNBBreakpoint *bp) const;
50 bool DisableHardwareBreakpoint (const DNBBreakpoint *bp) const;
51 uint32_t EnableHardwareWatchpoint (const DNBBreakpoint *wp) const;
52 bool DisableHardwareWatchpoint (const DNBBreakpoint *wp) const;
MachThread.cpp 407 DNBBreakpoint *
417 DNBBreakpoint *bp = CurrentBreakpoint();
620 MachThread::EnableHardwareBreakpoint (const DNBBreakpoint *bp)
628 MachThread::EnableHardwareWatchpoint (const DNBBreakpoint *wp, bool also_set_on_task)
648 MachThread::DisableHardwareBreakpoint (const DNBBreakpoint *bp)
656 MachThread::DisableHardwareWatchpoint (const DNBBreakpoint *wp, bool also_set_on_task)
MachThreadList.cpp 486 MachThreadList::NotifyBreakpointChanged (const DNBBreakpoint *bp)
498 MachThreadList::EnableHardwareBreakpoint (const DNBBreakpoint* bp) const
510 MachThreadList::DisableHardwareBreakpoint (const DNBBreakpoint* bp) const
524 MachThreadList::EnableHardwareWatchpoint (const DNBBreakpoint* wp) const
554 MachThreadList::DisableHardwareWatchpoint (const DNBBreakpoint* wp) const
MachProcess.h 18 #include "DNBBreakpoint.h"
117 DNBBreakpoint * CreateBreakpoint (nub_addr_t addr, nub_size_t length, bool hardware);
127 DNBBreakpoint * CreateWatchpoint (nub_addr_t addr, nub_size_t length, uint32_t watch_type, bool hardware);
MachProcess.cpp 603 std::vector<DNBBreakpoint *> bps;
617 DNBBreakpoint *bp = bps[i];
717 DNBBreakpoint *
722 DNBBreakpoint *bp = m_breakpoints.FindByAddress(addr);
741 DNBBreakpoint *
746 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr);
794 DNBBreakpoint *bp = m_breakpoints.FindByAddress(addr);
932 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr);
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/i386/
DNBArchImplI386.cpp 657 DNBBreakpoint *bp = m_thread->Process()->Breakpoints().FindByAddress(pc);
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/x86_64/
DNBArchImplX86_64.cpp 611 DNBBreakpoint *bp = m_thread->Process()->Breakpoints().FindByAddress(pc);
    [all...]

Completed in 273 milliseconds