Lines Matching full:location
21 # Get the breakpoint location from breakpoint after we verified that,
22 # indeed, it has one location.
23 location = breakpoint.GetLocationAtIndex(0)
24 self.assertTrue(location and
25 location.IsEnabled(),
28 # Set the ignore count on the breakpoint location.
29 location.SetIgnoreCount(2)
30 self.assertTrue(location.GetIgnoreCount() == 2,
56 SBBreakpoint supports breakpoint location iteration, for example,::
59 print('breakpoint location load addr: %s' % hex(bl.GetLoadAddress()))
60 print('breakpoint location condition: %s' % hex(bl.GetCondition()))