Home
last modified time | relevance | path

Searched refs:StatResultType (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/RISCOS/Modules/
Driscosmodule.c177 static PyTypeObject StatResultType; variable
200 v = PyStructSequence_New(&StatResultType); in riscos_stat()
601 PyStructSequence_InitType(&StatResultType, &stat_result_desc); in initriscos()
602 PyDict_SetItemString(d, "stat_result", (PyObject*) &StatResultType); in initriscos()
/external/python/cpython2/Modules/
Dposixmodule.c1400 static PyTypeObject StatResultType; variable
1479 PyObject *v = PyStructSequence_New(&StatResultType); in _pystat_fromstructstat()
9517 PyStructSequence_InitType(&StatResultType, &stat_result_desc); in INITFUNC()
9518 structseq_new = StatResultType.tp_new; in INITFUNC()
9519 StatResultType.tp_new = statresult_new; in INITFUNC()
9533 Py_INCREF((PyObject*) &StatResultType); in INITFUNC()
9534 PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType); in INITFUNC()
/external/python/cpython3/Modules/
Dposixmodule.c1934 static PyTypeObject StatResultType; variable
2011 PyObject *v = PyStructSequence_New(&StatResultType); in _pystat_fromstructstat()
13485 if (PyStructSequence_InitType2(&StatResultType, &stat_result_desc) < 0) in INITFUNC()
13487 structseq_new = StatResultType.tp_new; in INITFUNC()
13488 StatResultType.tp_new = statresult_new; in INITFUNC()
13526 Py_INCREF((PyObject*) &StatResultType); in INITFUNC()
13527 PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType); in INITFUNC()