OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:py_insn_type
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/gpl3/gdb/dist/gdb/python/
py-instruction.c
26
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 (gdbpy_type_ready (&
py_insn_type
) < 0)
73
py_insn_type
.tp_new = nullptr
[
all
...]
/src/external/gpl3/gdb.old/dist/gdb/python/
py-instruction.c
26
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
.tp_new = nullptr
[
all
...]
Completed in 26 milliseconds
Indexes created Mon Mar 02 05:31:46 UTC 2026