Home
last modified time | relevance | path

Searched refs:bppy_pending_object (Results 1 – 6 of 6) sorted by relevance

/netbsd/src/external/gpl3/gdb/dist/gdb/python/
Dpy-finishbreakpoint.c300 bppy_pending_object = &self_bpfinish->py_bp; in bpfinishpy_init()
301 bppy_pending_object->number = -1; in bpfinishpy_init()
302 bppy_pending_object->bp = NULL; in bpfinishpy_init()
Dpy-breakpoint.c100 gdbpy_breakpoint_object *bppy_pending_object; variable
974 bppy_pending_object = (gdbpy_breakpoint_object *) self; in bppy_init()
975 bppy_pending_object->number = -1; in bppy_init()
976 bppy_pending_object->bp = NULL; in bppy_init()
1057 bppy_pending_object = NULL; in bppy_init()
1236 if (!user_breakpoint_p (bp) && bppy_pending_object == NULL) in gdbpy_breakpoint_created()
1256 if (bppy_pending_object) in gdbpy_breakpoint_created()
1258 newbp = bppy_pending_object; in gdbpy_breakpoint_created()
1260 bppy_pending_object = NULL; in gdbpy_breakpoint_created()
Dpython-internal.h347 extern gdbpy_breakpoint_object *bppy_pending_object;
/netbsd/src/external/gpl3/gdb/dist/gdb/
DChangeLog-201165 * python/py-breakpoint.c (bppy_pending_object): Make non-static.
74 (bppy_pending_object): Likewise.
DChangeLog-20165958 * python/py-breakpoint.c (bppy_init): Clear bppy_pending_object
DChangeLog-20192448 only call Py_INCREF (newbp) in the bppy_pending_object case.