Lines Matching refs:PyObject

84 static PyObject *
85 blpy_iter (PyObject *self) in blpy_iter()
102 return (PyObject *) block_iter_obj; in blpy_iter()
105 static PyObject *
106 blpy_get_start (PyObject *self, void *closure) in blpy_get_start()
115 static PyObject *
116 blpy_get_end (PyObject *self, void *closure) in blpy_get_end()
125 static PyObject *
126 blpy_get_function (PyObject *self, void *closure) in blpy_get_function()
140 static PyObject *
141 blpy_get_superblock (PyObject *self, void *closure) in blpy_get_superblock()
158 static PyObject *
159 blpy_get_global_block (PyObject *self, void *closure) in blpy_get_global_block()
177 static PyObject *
178 blpy_get_static_block (PyObject *self, void *closure) in blpy_get_static_block()
197 static PyObject *
198 blpy_is_global (PyObject *self, void *closure) in blpy_is_global()
213 static PyObject *
214 blpy_is_static (PyObject *self, void *closure) in blpy_is_static()
228 blpy_dealloc (PyObject *obj) in blpy_dealloc()
269 PyObject *
278 return (PyObject *) block_obj; in block_to_block_object()
283 block_object_to_block (PyObject *obj) in block_object_to_block()
291 static PyObject *
292 blpy_block_syms_iter (PyObject *self) in blpy_block_syms_iter()
304 static PyObject *
305 blpy_block_syms_iternext (PyObject *self) in blpy_block_syms_iternext()
330 blpy_block_syms_dealloc (PyObject *obj) in blpy_block_syms_dealloc()
340 static PyObject *
341 blpy_is_valid (PyObject *self, PyObject *args) in blpy_is_valid()
355 static PyObject *
356 blpy_iter_is_valid (PyObject *self, PyObject *args) in blpy_iter_is_valid()
369 PyObject *
370 gdbpy_block_for_pc (PyObject *self, PyObject *args) in gdbpy_block_for_pc()
445 PyModule_AddObject (gdb_module, "Block", (PyObject *) &block_object_type); in gdbpy_initialize_blocks()
449 (PyObject *) &block_syms_iterator_object_type); in gdbpy_initialize_blocks()