Home
last modified time | relevance | path

Searched refs:StatResultType (Results 1 – 2 of 2) 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.c1394 static PyTypeObject StatResultType; variable
1473 PyObject *v = PyStructSequence_New(&StatResultType); in _pystat_fromstructstat()
9483 PyStructSequence_InitType(&StatResultType, &stat_result_desc); in INITFUNC()
9484 structseq_new = StatResultType.tp_new; in INITFUNC()
9485 StatResultType.tp_new = statresult_new; in INITFUNC()
9499 Py_INCREF((PyObject*) &StatResultType); in INITFUNC()
9500 PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType); in INITFUNC()