HomeSort by: relevance | last modified time | path
    Searched defs:gdb_module (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gdb.old/dist/gdb/python/
python.c 89 PyObject *gdb_module;
2506 gdb_module = PyImport_ImportModule ("_gdb");
2507 if (gdb_module == NULL)
2510 if (PyModule_AddStringConstant (gdb_module, "VERSION", version) < 0
2511 || PyModule_AddStringConstant (gdb_module, "HOST_CONFIG", host_name) < 0
2512 || PyModule_AddStringConstant (gdb_module, "TARGET_CONFIG",
2517 if (PyModule_AddIntConstant (gdb_module, "STDOUT", 0) < 0
2518 || PyModule_AddIntConstant (gdb_module, "STDERR", 1) < 0
2519 || PyModule_AddIntConstant (gdb_module, "STDLOG", 2) < 0)
2524 || gdb_pymodule_addobject (gdb_module, "error", gdbpy_gdb_error) < 0
88 PyObject *gdb_module; variable
    [all...]
  /src/external/gpl3/gdb/dist/gdb/python/
python.c 91 PyObject *gdb_module;
2595 gdb_module = PyImport_ImportModule ("_gdb");
2596 if (gdb_module == NULL)
2599 if (PyModule_AddStringConstant (gdb_module, "VERSION", version) < 0
2600 || PyModule_AddStringConstant (gdb_module, "HOST_CONFIG", host_name) < 0
2601 || PyModule_AddStringConstant (gdb_module, "TARGET_CONFIG",
2606 if (PyModule_AddIntConstant (gdb_module, "STDOUT", 0) < 0
2607 || PyModule_AddIntConstant (gdb_module, "STDERR", 1) < 0
2608 || PyModule_AddIntConstant (gdb_module, "STDLOG", 2) < 0)
2613 || gdb_pymodule_addobject (gdb_module, "error", gdbpy_gdb_error) < 0
90 PyObject *gdb_module; variable
    [all...]

Completed in 21 milliseconds