Searched defs:SchedParamType (Results 1 - 1 of 1) sorted by relevance

/external/python/cpython3/Modules/
H A Dposixmodule.c1820 static PyTypeObject SchedParamType; variable
5378 class os.sched_param "PyObject *" "&SchedParamType"
5423 if (Py_TYPE(param) != &SchedParamType) {
5494 result = PyStructSequence_New(&SchedParamType);
13005 if (PyStructSequence_InitType2(&SchedParamType, &sched_param_desc) < 0)
13007 SchedParamType.tp_new = os_sched_param;
13032 Py_INCREF(&SchedParamType);
13033 PyModule_AddObject(m, "sched_param", (PyObject *)&SchedParamType);

Completed in 191 milliseconds