Lines Matching refs:PyObject
62 frame_object_to_frame_info (PyObject *obj) in frame_object_to_frame_info()
80 static PyObject *
81 frapy_str (PyObject *self) in frapy_str()
84 PyObject *result; in frapy_str()
100 static PyObject *
101 frapy_is_valid (PyObject *self, PyObject *args) in frapy_is_valid()
121 static PyObject *
122 frapy_name (PyObject *self, PyObject *args) in frapy_name()
127 PyObject *result; in frapy_name()
152 static PyObject *
153 frapy_type (PyObject *self, PyObject *args) in frapy_type()
173 static PyObject *
174 frapy_arch (PyObject *self, PyObject *args) in frapy_arch()
192 static PyObject *
193 frapy_unwind_stop_reason (PyObject *self, PyObject *args) in frapy_unwind_stop_reason()
213 static PyObject *
214 frapy_pc (PyObject *self, PyObject *args) in frapy_pc()
234 static PyObject *
235 frapy_block (PyObject *self, PyObject *args) in frapy_block()
275 static PyObject *
276 frapy_function (PyObject *self, PyObject *args) in frapy_function()
299 PyObject *
335 return (PyObject *) frame_obj; in frame_info_to_frame_object()
342 static PyObject *
343 frapy_older (PyObject *self, PyObject *args) in frapy_older()
347 PyObject *prev_obj = NULL; /* Initialize to appease gcc warning. */ in frapy_older()
355 prev_obj = (PyObject *) frame_info_to_frame_object (prev); in frapy_older()
371 static PyObject *
372 frapy_newer (PyObject *self, PyObject *args) in frapy_newer()
376 PyObject *next_obj = NULL; /* Initialize to appease gcc warning. */ in frapy_newer()
384 next_obj = (PyObject *) frame_info_to_frame_object (next); in frapy_newer()
399 static PyObject *
400 frapy_find_sal (PyObject *self, PyObject *args) in frapy_find_sal()
405 PyObject *sal_obj = NULL; /* Initialize to appease gcc warning. */ in frapy_find_sal()
426 static PyObject *
427 frapy_read_var (PyObject *self, PyObject *args) in frapy_read_var()
430 PyObject *sym_obj, *block_obj = NULL; in frapy_read_var()
504 static PyObject *
505 frapy_select (PyObject *self, PyObject *args) in frapy_select()
524 PyObject *
525 gdbpy_newest_frame (PyObject *self, PyObject *args) in gdbpy_newest_frame()
528 PyObject *frame_obj = NULL; /* Initialize to appease gcc warning. */ in gdbpy_newest_frame()
544 PyObject *
545 gdbpy_selected_frame (PyObject *self, PyObject *args) in gdbpy_selected_frame()
548 PyObject *frame_obj = NULL; /* Initialize to appease gcc warning. */ in gdbpy_selected_frame()
564 PyObject *
565 gdbpy_frame_stop_reason_string (PyObject *self, PyObject *args) in gdbpy_frame_stop_reason_string()
588 static PyObject *
589 frapy_richcompare (PyObject *self, PyObject *other, int op) in frapy_richcompare()
639 PyModule_AddObject (gdb_module, "Frame", (PyObject *) &frame_object_type); in gdbpy_initialize_frames()