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 Return a string with all the information about the breakpoint, nicely
62 * The breakpoint number.
67 * The breakpoint hit count.
176 This method checks if there is a breakpoint in the filename and line
178 breakpoint is a temporary one, this method deletes it.
182 This method checks if there is a breakpoint in the filename of the current
211 Handle how a breakpoint must be removed when it is a temporary one.
258 Set a new breakpoint. If the *lineno* line doesn't exist for the
269 Delete the breakpoint which has the index *arg* in the
284 Return a breakpoint specified by the given number. If *arg* is a string,
286 the given breakpoint never existed or has been deleted, a
293 Check if there is a breakpoint for *lineno* of *filename*.
355 Check whether we should break here, depending on the way the breakpoint *b*
359 in the frame also passed as argument. If the breakpoint was set via function
365 Determine if there is an effective (active) breakpoint at this line of code.
366 Return a tuple of the breakpoint and a boolean that indicates if it is ok
367 to delete a temporary breakpoint. Return ``(None, None)`` if there is no
368 matching breakpoint.