Lines Matching refs:PyObject
59 thpy_dealloc (PyObject *self) in thpy_dealloc()
65 static PyObject *
66 thpy_get_name (PyObject *self, void *ignore) in thpy_get_name()
84 thpy_set_name (PyObject *self, PyObject *newvalue, void *ignore) in thpy_set_name()
122 static PyObject *
123 thpy_get_num (PyObject *self, void *closure) in thpy_get_num()
134 static PyObject *
135 thpy_get_ptid (PyObject *self, void *closure) in thpy_get_ptid()
140 PyObject *ret; in thpy_get_ptid()
161 static PyObject *
162 thpy_switch (PyObject *self, PyObject *args) in thpy_switch()
180 static PyObject *
181 thpy_is_stopped (PyObject *self, PyObject *args) in thpy_is_stopped()
195 static PyObject *
196 thpy_is_running (PyObject *self, PyObject *args) in thpy_is_running()
210 static PyObject *
211 thpy_is_exited (PyObject *self, PyObject *args) in thpy_is_exited()
227 static PyObject *
228 thpy_is_valid (PyObject *self, PyObject *args) in thpy_is_valid()
240 PyObject *
241 gdbpy_selected_thread (PyObject *self, PyObject *args) in gdbpy_selected_thread()
243 PyObject *thread_obj; in gdbpy_selected_thread()
245 thread_obj = (PyObject *) find_thread_object (inferior_ptid); in gdbpy_selected_thread()
265 (PyObject *) &thread_object_type); in gdbpy_initialize_thread()