Lines Matching defs:minor
6088 "minor($module, device, /)\n"
6091 "Extracts a device minor number from a raw device number.");
6094 {"minor", (PyCFunction)os_minor, METH_O, os_minor__doc__},
6124 "makedev($module, major, minor, /)\n"
6127 "Composes a raw device number from the major and minor device numbers.");
6133 os_makedev_impl(PyObject *module, int major, int minor);
6140 int minor;
6150 minor = _PyLong_AsInt(args[1]);
6151 if (minor == -1 && PyErr_Occurred()) {
6154 _return_value = os_makedev_impl(module, major, minor);