Home | History | Annotate | Download | only in Modules

Lines Matching defs:param

265 #include <sys/param.h>
1316 This would however require an additional param to the
5419 convert_sched_param(PyObject *param, struct sched_param *res)
5423 if (Py_TYPE(param) != &SchedParamType) {
5427 priority = PyLong_AsLong(PyStructSequence_GET_ITEM(param, 0));
5446 param: sched_param
5452 param is an instance of sched_param.
5457 struct sched_param *param)
5465 if (sched_setscheduler(pid, policy, param) == -1)
5488 struct sched_param param;
5492 if (sched_getparam(pid, &param))
5497 priority = PyLong_FromLong(param.sched_priority);
5510 param: sched_param
5516 param should be an instance of sched_param.
5521 struct sched_param *param)
5524 if (sched_setparam(pid, param))