Home
last modified time | relevance | path

Searched refs:PyStructSequence_InitType2 (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython3/Objects/
Dstructseq.c332 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()
Dfloatobject.c2002 if (PyStructSequence_InitType2(&FloatInfoType, &floatinfo_desc) < 0) in _PyFloat_Init()
Dlongobject.c5503 if (PyStructSequence_InitType2(&Int_InfoType, &int_info_desc) < 0) in _PyLong_Init()
/external/python/cpython3/Include/
Dstructseq.h27 PyAPI_FUNC(int) PyStructSequence_InitType2(PyTypeObject *type,
/external/python/cpython3/Python/
Dthread.c180 if (PyStructSequence_InitType2(&ThreadInfoType, &threadinfo_desc) < 0) in PyThread_GetInfo()
Dsysmodule.c2341 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/
Dspwdmodule.c222 if (PyStructSequence_InitType2(&StructSpwdType, in PyInit_spwd()
Dpwdmodule.c239 if (PyStructSequence_InitType2(&StructPwdType, in PyInit_pwd()
Dgrpmodule.c247 if (PyStructSequence_InitType2(&StructGrpType, in PyInit_grp()
D_lsprof.c872 if (PyStructSequence_InitType2(&StatsEntryType, in PyInit__lsprof()
875 if (PyStructSequence_InitType2(&StatsSubEntryType, in PyInit__lsprof()
Dresource.c362 if (PyStructSequence_InitType2(&StructRUsageType, in PyInit_resource()
Dsignalmodule.c1228 if (PyStructSequence_InitType2(&SiginfoType, &struct_siginfo_desc) < 0) in PyInit__signal()
Dposixmodule.c13477 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, &times_result_desc) < 0) in INITFUNC()
13543 if (PyStructSequence_InitType2(&UnameResultType, &uname_result_desc) < 0) in INITFUNC()
Dtimemodule.c1788 if (PyStructSequence_InitType2(&StructTimeType, in PyInit_time()
/external/python/cpython3/Doc/c-api/
Dtuple.rst132 .. c:function:: int PyStructSequence_InitType2(PyTypeObject *type, PyStructSequence_Desc *desc)
/external/python/cpython3/Doc/data/
Drefcounts.dat2095 PyStructSequence_InitType2:int:::
2096 PyStructSequence_InitType2:PyTypeObject*:type:+1:
2097 PyStructSequence_InitType2:PyStructSequence_Desc*:desc::
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1910 * New function :c:func:`PyStructSequence_InitType2` supplements the
/external/python/cpython3/Misc/
DHISTORY4322 - Issue #18520: Add a new PyStructSequence_InitType2() function, same than