Lines Matching refs:breakpoint
122 breakpoint = target.BreakpointCreateByName('c', 'a.out')
123 self.trace("breakpoint:", breakpoint)
124 self.assertTrue(breakpoint and
125 breakpoint.GetNumLocations() == 1,
130 self.assertEqual(breakpoint.GetThreadIndex(), lldb.UINT32_MAX,
133 self.assertTrue(breakpoint.GetThreadName() is None,
139 breakpoint.SetThreadIndex(1)
140 self.assertEqual(breakpoint.GetThreadIndex(), 1,
145 location = breakpoint.GetLocationAtIndex(0)
172 self.assertEqual(breakpoint.GetHitCount(), 1)
190 breakpoint = target.BreakpointCreateByName('c', 'a.out')
191 self.trace("breakpoint:", breakpoint)
192 self.assertTrue(breakpoint and
193 breakpoint.GetNumLocations() == 1,
197 breakpoint.SetCondition('no_such_variable == not_this_one_either')
198 self.expect(breakpoint.GetCondition(), exe=False,
217 self.assertEqual(breakpoint.GetHitCount(), 1)