/external/llvm-project/lldb/source/API/ |
D | SBWatchpoint.cpp | 201 void SBWatchpoint::SetIgnoreCount(uint32_t n) { in SetIgnoreCount() function in SBWatchpoint 202 LLDB_RECORD_METHOD(void, SBWatchpoint, SetIgnoreCount, (uint32_t), n); in SetIgnoreCount() 208 watchpoint_sp->SetIgnoreCount(n); in SetIgnoreCount() 332 LLDB_REGISTER_METHOD(void, SBWatchpoint, SetIgnoreCount, (uint32_t)); in RegisterMethods()
|
D | SBBreakpointLocation.cpp | 152 void SBBreakpointLocation::SetIgnoreCount(uint32_t n) { in SetIgnoreCount() function in SBBreakpointLocation 153 LLDB_RECORD_METHOD(void, SBBreakpointLocation, SetIgnoreCount, (uint32_t), n); in SetIgnoreCount() 159 loc_sp->SetIgnoreCount(n); in SetIgnoreCount() 493 LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetIgnoreCount, in RegisterMethods()
|
D | SBBreakpointName.cpp | 278 void SBBreakpointName::SetIgnoreCount(uint32_t count) { in SetIgnoreCount() function in SBBreakpointName 279 LLDB_RECORD_METHOD(void, SBBreakpointName, SetIgnoreCount, (uint32_t), count); in SetIgnoreCount() 288 bp_name->GetOptions().SetIgnoreCount(count); in SetIgnoreCount() 724 LLDB_REGISTER_METHOD(void, SBBreakpointName, SetIgnoreCount, (uint32_t)); in RegisterMethods()
|
D | SBBreakpoint.cpp | 267 void SBBreakpoint::SetIgnoreCount(uint32_t count) { in SetIgnoreCount() function in SBBreakpoint 268 LLDB_RECORD_METHOD(void, SBBreakpoint, SetIgnoreCount, (uint32_t), count); in SetIgnoreCount() 275 bkpt_sp->SetIgnoreCount(count); in SetIgnoreCount() 1018 LLDB_REGISTER_METHOD(void, SBBreakpoint, SetIgnoreCount, (uint32_t)); in RegisterMethods()
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_watchpoint.py | 18 obj.SetIgnoreCount(5)
|
D | sb_breakpoint.py | 19 obj.SetIgnoreCount(1)
|
D | sb_breakpointname.py | 15 obj.SetIgnoreCount(1)
|
/external/llvm-project/lldb/tools/lldb-vscode/ |
D | BreakpointBase.cpp | 24 bp.SetIgnoreCount(hitCount - 1); in SetHitCondition()
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBWatchpoint.i | 69 SetIgnoreCount (uint32_t n);
|
D | SBBreakpointName.i | 57 void SetIgnoreCount(uint32_t count);
|
D | SBBreakpointLocation.i | 58 SetIgnoreCount (uint32_t n);
|
D | SBBreakpoint.i | 137 SetIgnoreCount (uint32_t count);
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBWatchpoint.h | 55 void SetIgnoreCount(uint32_t n);
|
D | SBBreakpointLocation.h | 46 void SetIgnoreCount(uint32_t n);
|
D | SBBreakpointName.h | 56 void SetIgnoreCount(uint32_t count);
|
D | SBBreakpoint.h | 67 void SetIgnoreCount(uint32_t count);
|
/external/llvm-project/lldb/test/API/macosx/profile_vrs_detach/ |
D | TestDetachVrsProfile.py | 45 bkpt.SetIgnoreCount(1)
|
/external/llvm-project/lldb/test/API/python_api/watchpoint/ |
D | TestWatchpointIgnoreCount.py | 81 watchpoint.SetIgnoreCount(2)
|
/external/llvm-project/lldb/source/Breakpoint/ |
D | BreakpointLocation.cpp | 339 void BreakpointLocation::SetIgnoreCount(uint32_t n) { in SetIgnoreCount() function in BreakpointLocation 340 GetLocationOptions()->SetIgnoreCount(n); in SetIgnoreCount() 348 m_options_up->SetIgnoreCount(loc_ignore - 1); in DecrementIgnoreCount()
|
/external/llvm-project/lldb/test/API/commands/watchpoints/watchpoint_events/ |
D | TestWatchpointEvents.py | 80 local_watch.SetIgnoreCount(10)
|
/external/llvm-project/lldb/include/lldb/Breakpoint/ |
D | BreakpointLocation.h | 100 void SetIgnoreCount(uint32_t n);
|
D | Watchpoint.h | 82 void SetIgnoreCount(uint32_t n);
|
D | BreakpointOptions.h | 301 void SetIgnoreCount(uint32_t n) { in SetIgnoreCount() function
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_ignore_count/ |
D | TestBreakpointIgnoreCount.py | 122 location.SetIgnoreCount(2)
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_locations/ |
D | TestBreakpointLocations.py | 84 bkpt.SetIgnoreCount(10)
|