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

  /external/lldb/test/python_api/default-constructor/
sb_watchpoint.py 18 obj.SetIgnoreCount(5)
sb_breakpoint.py 18 obj.SetIgnoreCount(1)
  /external/lldb/scripts/Python/interface/
SBBreakpointLocation.i 54 SetIgnoreCount (uint32_t n);
SBWatchpoint.i 67 SetIgnoreCount (uint32_t n);
SBBreakpoint.i 40 location.SetIgnoreCount(2)
42 'SetIgnoreCount() works correctly')
135 SetIgnoreCount (uint32_t count);
  /external/lldb/include/lldb/API/
SBBreakpointLocation.h 53 SetIgnoreCount (uint32_t n);
SBWatchpoint.h 64 SetIgnoreCount (uint32_t n);
SBBreakpoint.h 83 SetIgnoreCount (uint32_t count);
  /external/lldb/include/lldb/Breakpoint/
BreakpointLocation.h 133 SetIgnoreCount (uint32_t n);
BreakpointOptions.h 239 SetIgnoreCount (uint32_t n)
Watchpoint.h 100 void SetIgnoreCount (uint32_t n);
Breakpoint.h 339 SetIgnoreCount (uint32_t count);
  /external/lldb/test/python_api/watchpoint/
TestWatchpointIgnoreCount.py 27 """Test SBWatchpoint.SetIgnoreCount() API."""
35 """Test SBWatchpoint.SetIgnoreCount() API."""
40 """Test SBWatchpoint.SetIgnoreCount() API."""
86 watchpoint.SetIgnoreCount(2)
  /external/lldb/source/API/
SBBreakpointLocation.cpp 132 SBBreakpointLocation::SetIgnoreCount (uint32_t n)
137 m_opaque_sp->SetIgnoreCount (n);
SBWatchpoint.cpp 207 SBWatchpoint::SetIgnoreCount (uint32_t n)
213 watchpoint_sp->SetIgnoreCount (n);
SBBreakpoint.cpp 285 SBBreakpoint::SetIgnoreCount (uint32_t count)
290 log->Printf ("SBBreakpoint(%p)::SetIgnoreCount (count=%u)", m_opaque_sp.get(), count);
295 m_opaque_sp->SetIgnoreCount (count);
  /external/lldb/source/Breakpoint/
Breakpoint.cpp 147 Breakpoint::SetIgnoreCount (uint32_t n)
152 m_options.SetIgnoreCount(n);
161 m_options.SetIgnoreCount(ignore - 1);
BreakpointLocation.cpp 368 BreakpointLocation::SetIgnoreCount (uint32_t n)
370 GetLocationOptions()->SetIgnoreCount(n);
381 m_options_ap->SetIgnoreCount(loc_ignore - 1);
Watchpoint.cpp 349 Watchpoint::SetIgnoreCount (uint32_t n)
  /external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/
TestBreakpointIgnoreCount.py 124 location.SetIgnoreCount(2)
126 "SetIgnoreCount() works correctly")
  /external/lldb/test/functionalities/watchpoint/watchpoint_events/
TestWatchpointEvents.py 93 local_watch.SetIgnoreCount(10)
  /external/lldb/source/Commands/
CommandObjectBreakpoint.cpp 527 bp->GetOptions()->SetIgnoreCount(m_options.m_ignore_count);
    [all...]
CommandObjectProcess.cpp     [all...]
  /external/lldb/source/Target/
Target.cpp 894 wp_sp->SetIgnoreCount(ignore_count);
979 wp_sp->SetIgnoreCount(ignore_count);
    [all...]

Completed in 215 milliseconds