Searched refs:py_insn_type (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/external/gpl3/gdb/dist/gdb/python/
H A Dpy-instruction.c26 PyTypeObject py_insn_type = { variable
60 if (py_insn_type.tp_new == nullptr)
62 py_insn_type.tp_new = PyType_GenericNew;
63 py_insn_type.tp_flags = Py_TPFLAGS_DEFAULT;
64 py_insn_type.tp_basicsize = sizeof (py_insn_obj);
65 py_insn_type.tp_name = "gdb.Instruction";
66 py_insn_type.tp_doc = "GDB instruction object";
67 py_insn_type.tp_getset = py_insn_getset;
69 if (PyType_Ready (&py_insn_type) < 0)
73 py_insn_type
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/
H A Dpy-instruction.c27 PyTypeObject py_insn_type = { variable
61 if (py_insn_type.tp_new == nullptr)
63 py_insn_type.tp_new = PyType_GenericNew;
64 py_insn_type.tp_flags = Py_TPFLAGS_DEFAULT;
65 py_insn_type.tp_basicsize = sizeof (py_insn_obj);
66 py_insn_type.tp_name = "gdb.Instruction";
67 py_insn_type.tp_doc = "GDB instruction object";
68 py_insn_type.tp_getset = py_insn_getset;
70 if (PyType_Ready (&py_insn_type) < 0)
74 py_insn_type
[all...]

Completed in 178 milliseconds