Lines Matching refs:object
196 objfile_object *object = datum; in py_free_objfile() local
199 object->objfile = NULL; in py_free_objfile()
200 Py_DECREF ((PyObject *) object); in py_free_objfile()
211 objfile_object *object; in objfile_to_objfile_object() local
213 object = objfile_data (objfile, objfpy_objfile_data_key); in objfile_to_objfile_object()
214 if (!object) in objfile_to_objfile_object()
216 object = PyObject_New (objfile_object, &objfile_object_type); in objfile_to_objfile_object()
217 if (object) in objfile_to_objfile_object()
219 object->objfile = objfile; in objfile_to_objfile_object()
221 object->printers = PyList_New (0); in objfile_to_objfile_object()
222 if (!object->printers) in objfile_to_objfile_object()
224 Py_DECREF (object); in objfile_to_objfile_object()
228 object->type_printers = PyList_New (0); in objfile_to_objfile_object()
229 if (!object->type_printers) in objfile_to_objfile_object()
231 Py_DECREF (object); in objfile_to_objfile_object()
235 set_objfile_data (objfile, objfpy_objfile_data_key, object); in objfile_to_objfile_object()
239 return (PyObject *) object; in objfile_to_objfile_object()