Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dposixmodule.c1937 static PyTypeObject SchedParamType; variable
5577 if (Py_TYPE(param) != &SchedParamType) { in convert_sched_param()
5648 result = PyStructSequence_New(&SchedParamType); in os_sched_getparam_impl()
13506 if (PyStructSequence_InitType2(&SchedParamType, &sched_param_desc) < 0) in INITFUNC()
13508 SchedParamType.tp_new = os_sched_param; in INITFUNC()
13533 Py_INCREF(&SchedParamType); in INITFUNC()
13534 PyModule_AddObject(m, "sched_param", (PyObject *)&SchedParamType); in INITFUNC()