Home
last modified time | relevance | path

Searched refs:gdb_python_module (Results 1 – 3 of 3) sorted by relevance

/dflybsd-src/contrib/gdb-7/gdb/python/
H A Dpython.c83 PyObject *gdb_python_module; variable
894 if (gdb_python_module in before_prompt_hook()
895 && PyObject_HasAttrString (gdb_python_module, "prompt_hook")) in before_prompt_hook()
899 hook = PyObject_GetAttrString (gdb_python_module, "prompt_hook"); in before_prompt_hook()
1710 gdb_python_module = PyImport_ImportModule ("gdb"); in finish_python_initialization()
1711 if (gdb_python_module == NULL) in finish_python_initialization()
1725 if (PyModule_AddObject (m, "gdb", gdb_python_module)) in finish_python_initialization()
H A Dpy-prettyprint.c165 if (gdb_python_module == NULL in find_pretty_printer_from_gdb()
166 || ! PyObject_HasAttrString (gdb_python_module, "pretty_printers")) in find_pretty_printer_from_gdb()
168 pp_list = PyObject_GetAttrString (gdb_python_module, "pretty_printers"); in find_pretty_printer_from_gdb()
H A Dpython-internal.h153 extern PyObject *gdb_python_module;