• Home
  • Raw
  • Download

Lines Matching refs:breakpoint

31    such instances since there may be more than one breakpoint per line.
33 When creating a breakpoint, its associated filename should be in canonical
34 form. If a *funcname* is defined, a breakpoint hit will be counted when the
35 first line of that function is executed. A conditional breakpoint always
42 Delete the breakpoint from the list associated to a file/line. If it is
43 the last breakpoint in that position, it also deletes the entry for the
49 Mark the breakpoint as enabled.
54 Mark the breakpoint as disabled.
59 Print all the information about the breakpoint:
61 * The breakpoint number.
66 * The breakpoint hit count.
168 This method checks if there is a breakpoint in the filename and line
170 breakpoint is a temporary one, this method deletes it.
174 This method checks if there is a breakpoint in the filename of the current
203 Handle how a breakpoint must be removed when it is a temporary one.
250 Set a new breakpoint. If the *lineno* line doesn't exist for the
261 Delete the breakpoint which has the index *arg* in the
276 Check if there is a breakpoint for *lineno* of *filename*.
338 Check whether we should break here, depending on the way the breakpoint *b*
342 in the frame also passed as argument. If the breakpoint was set via function
348 Determine if there is an effective (active) breakpoint at this line of code.
349 Return a tuple of the breakpoint and a boolean that indicates if it is ok
350 to delete a temporary breakpoint. Return ``(None, None)`` if there is no
351 matching breakpoint.