Lines Matching defs:mask
1838 "umask($module, mask, /)\n"
1847 os_umask_impl(PyObject *module, int mask);
1853 int mask;
1855 mask = _PyLong_AsInt(arg);
1856 if (mask == -1 && PyErr_Occurred()) {
1859 return_value = os_umask_impl(module, mask);
3020 "sched_setaffinity($module, pid, mask, /)\n"
3023 "Set the CPU affinity of the process identified by pid to mask.\n"
3025 "mask should be an iterable of integers identifying CPUs.");
3031 os_sched_setaffinity_impl(PyObject *module, pid_t pid, PyObject *mask);
3038 PyObject *mask;
3041 &pid, &mask)) {
3044 return_value = os_sched_setaffinity_impl(module, pid, mask);