Lines Matching refs:PyObject

32   PyObject *py = p;  in py_decref()
46 make_cleanup_py_decref (PyObject *py) in make_cleanup_py_decref()
62 PyObject *
63 python_string_to_unicode (PyObject *obj) in python_string_to_unicode()
65 PyObject *unicode_str; in python_string_to_unicode()
94 unicode_to_encoded_string (PyObject *unicode_str, const char *charset) in unicode_to_encoded_string()
97 PyObject *string; in unicode_to_encoded_string()
119 static PyObject *
120 unicode_to_encoded_python_string (PyObject *unicode_str, const char *charset) in unicode_to_encoded_python_string()
132 unicode_to_target_string (PyObject *unicode_str) in unicode_to_target_string()
142 static PyObject *
143 unicode_to_target_python_string (PyObject *unicode_str) in unicode_to_target_python_string()
154 python_string_to_target_string (PyObject *obj) in python_string_to_target_string()
156 PyObject *str; in python_string_to_target_string()
173 PyObject *
174 python_string_to_target_python_string (PyObject *obj) in python_string_to_target_python_string()
176 PyObject *str; in python_string_to_target_python_string()
177 PyObject *result; in python_string_to_target_python_string()
193 python_string_to_host_string (PyObject *obj) in python_string_to_host_string()
195 PyObject *str; in python_string_to_host_string()
211 gdbpy_is_string (PyObject *obj) in gdbpy_is_string()
225 gdbpy_obj_to_string (PyObject *obj) in gdbpy_obj_to_string()
227 PyObject *str_obj = PyObject_Str (obj); in gdbpy_obj_to_string()
251 gdbpy_exception_to_string (PyObject *ptype, PyObject *pvalue) in gdbpy_exception_to_string()
277 PyObject *
280 PyObject *exc_class; in gdbpy_convert_exception()
299 get_addr_from_python (PyObject *obj, CORE_ADDR *addr) in get_addr_from_python()
305 PyObject *num = PyNumber_Long (obj); in get_addr_from_python()
332 PyObject *
354 PyObject *
380 gdb_py_int_as_long (PyObject *obj, long *result) in gdb_py_int_as_long()
392 PyObject *
393 gdb_py_generic_dict (PyObject *self, void *closure) in gdb_py_generic_dict()
395 PyObject *result; in gdb_py_generic_dict()
400 result = * (PyObject **) raw_ptr; in gdb_py_generic_dict()