Lines Matching refs:PyObject
76 static PyObject *
77 bppy_is_valid (PyObject *self, PyObject *args) in bppy_is_valid()
87 static PyObject *
88 bppy_get_enabled (PyObject *self, void *closure) in bppy_get_enabled()
101 static PyObject *
102 bppy_get_silent (PyObject *self, void *closure) in bppy_get_silent()
114 bppy_set_enabled (PyObject *self, PyObject *newvalue, void *closure) in bppy_set_enabled()
154 bppy_set_silent (PyObject *self, PyObject *newvalue, void *closure) in bppy_set_silent()
185 bppy_set_thread (PyObject *self, PyObject *newvalue, void *closure) in bppy_set_thread()
226 bppy_set_task (PyObject *self, PyObject *newvalue, void *closure) in bppy_set_task()
278 static PyObject *
279 bppy_delete_breakpoint (PyObject *self, PyObject *args) in bppy_delete_breakpoint()
298 bppy_set_ignore_count (PyObject *self, PyObject *newvalue, void *closure) in bppy_set_ignore_count()
336 bppy_set_hit_count (PyObject *self, PyObject *newvalue, void *closure) in bppy_set_hit_count()
369 static PyObject *
370 bppy_get_location (PyObject *self, void *closure) in bppy_get_location()
388 static PyObject *
389 bppy_get_expression (PyObject *self, void *closure) in bppy_get_expression()
410 static PyObject *
411 bppy_get_condition (PyObject *self, void *closure) in bppy_get_condition()
429 bppy_set_condition (PyObject *self, PyObject *newvalue, void *closure) in bppy_set_condition()
466 static PyObject *
467 bppy_get_commands (PyObject *self, void *closure) in bppy_get_commands()
475 PyObject *result; in bppy_get_commands()
502 static PyObject *
503 bppy_get_type (PyObject *self, void *closure) in bppy_get_type()
514 static PyObject *
515 bppy_get_visibility (PyObject *self, void *closure) in bppy_get_visibility()
528 static PyObject *
529 bppy_get_number (PyObject *self, void *closure) in bppy_get_number()
539 static PyObject *
540 bppy_get_thread (PyObject *self, void *closure) in bppy_get_thread()
553 static PyObject *
554 bppy_get_task (PyObject *self, void *closure) in bppy_get_task()
567 static PyObject *
568 bppy_get_hit_count (PyObject *self, void *closure) in bppy_get_hit_count()
578 static PyObject *
579 bppy_get_ignore_count (PyObject *self, void *closure) in bppy_get_ignore_count()
590 bppy_init (PyObject *self, PyObject *args, PyObject *kwargs) in bppy_init()
596 PyObject *internal = NULL; in bppy_init()
669 PyObject *list = arg; in build_bp_list()
670 PyObject *bp = (PyObject *) b->py_bp_object; in build_bp_list()
688 PyObject *
689 gdbpy_breakpoints (PyObject *self, PyObject *args) in gdbpy_breakpoints()
691 PyObject *list, *tuple; in gdbpy_breakpoints()
725 PyObject *py_bp = (PyObject *) bp_obj; in gdbpy_should_stop()
735 PyObject *result = PyObject_CallMethod (py_bp, stop_func, NULL); in gdbpy_should_stop()
771 PyObject *py_bp = (PyObject *) bp_obj; in gdbpy_breakpoint_has_py_cond()
873 (PyObject *) &breakpoint_object_type); in gdbpy_initialize_breakpoints()
907 local_setattro (PyObject *self, PyObject *name, PyObject *v) in local_setattro()
930 return PyObject_GenericSetAttr ((PyObject *)self, name, v); in local_setattro()