Searched refs:PyStructSequence_InitType2 (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython3/Objects/ |
D | structseq.c | 332 PyStructSequence_InitType2(PyTypeObject *type, PyStructSequence_Desc *desc) in PyStructSequence_InitType2() function 406 (void)PyStructSequence_InitType2(type, desc); in PyStructSequence_InitType() 417 if (PyStructSequence_InitType2(result, desc) < 0) { in PyStructSequence_NewType()
|
D | floatobject.c | 2002 if (PyStructSequence_InitType2(&FloatInfoType, &floatinfo_desc) < 0) in _PyFloat_Init()
|
D | longobject.c | 5503 if (PyStructSequence_InitType2(&Int_InfoType, &int_info_desc) < 0) in _PyLong_Init()
|
/external/python/cpython3/Include/ |
D | structseq.h | 27 PyAPI_FUNC(int) PyStructSequence_InitType2(PyTypeObject *type,
|
/external/python/cpython3/Python/ |
D | thread.c | 180 if (PyStructSequence_InitType2(&ThreadInfoType, &threadinfo_desc) < 0) in PyThread_GetInfo()
|
D | sysmodule.c | 2341 if (PyStructSequence_InitType2(&Hash_InfoType, &hash_info_desc) < 0) { in _PySys_BeginInit() 2372 if (PyStructSequence_InitType2(&VersionInfoType, in _PySys_BeginInit() 2391 if (PyStructSequence_InitType2(&FlagsType, &flags_desc) < 0) { in _PySys_BeginInit() 2401 if (PyStructSequence_InitType2(&WindowsVersionType, in _PySys_BeginInit() 2428 if (PyStructSequence_InitType2( in _PySys_BeginInit()
|
/external/python/cpython3/Modules/ |
D | spwdmodule.c | 222 if (PyStructSequence_InitType2(&StructSpwdType, in PyInit_spwd()
|
D | pwdmodule.c | 239 if (PyStructSequence_InitType2(&StructPwdType, in PyInit_pwd()
|
D | grpmodule.c | 247 if (PyStructSequence_InitType2(&StructGrpType, in PyInit_grp()
|
D | _lsprof.c | 872 if (PyStructSequence_InitType2(&StatsEntryType, in PyInit__lsprof() 875 if (PyStructSequence_InitType2(&StatsSubEntryType, in PyInit__lsprof()
|
D | resource.c | 362 if (PyStructSequence_InitType2(&StructRUsageType, in PyInit_resource()
|
D | signalmodule.c | 1228 if (PyStructSequence_InitType2(&SiginfoType, &struct_siginfo_desc) < 0) in PyInit__signal()
|
D | posixmodule.c | 13477 if (PyStructSequence_InitType2(&WaitidResultType, &waitid_result_desc) < 0) in INITFUNC() 13485 if (PyStructSequence_InitType2(&StatResultType, &stat_result_desc) < 0) in INITFUNC() 13491 if (PyStructSequence_InitType2(&StatVFSResultType, in INITFUNC() 13506 if (PyStructSequence_InitType2(&SchedParamType, &sched_param_desc) < 0) in INITFUNC() 13512 if (PyStructSequence_InitType2(&TerminalSizeType, in INITFUNC() 13538 if (PyStructSequence_InitType2(&TimesResultType, ×_result_desc) < 0) in INITFUNC() 13543 if (PyStructSequence_InitType2(&UnameResultType, &uname_result_desc) < 0) in INITFUNC()
|
D | timemodule.c | 1788 if (PyStructSequence_InitType2(&StructTimeType, in PyInit_time()
|
/external/python/cpython3/Doc/c-api/ |
D | tuple.rst | 132 .. c:function:: int PyStructSequence_InitType2(PyTypeObject *type, PyStructSequence_Desc *desc)
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2095 PyStructSequence_InitType2:int::: 2096 PyStructSequence_InitType2:PyTypeObject*:type:+1: 2097 PyStructSequence_InitType2:PyStructSequence_Desc*:desc::
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 1910 * New function :c:func:`PyStructSequence_InitType2` supplements the
|
/external/python/cpython3/Misc/ |
D | HISTORY | 4322 - Issue #18520: Add a new PyStructSequence_InitType2() function, same than
|