Lines Matching defs:module
6 "fcntl($module, fd, cmd, arg=0, /)\n"
12 "as constants in the fcntl module, using the same names as used in\n"
25 fcntl_fcntl_impl(PyObject *module, int fd, int code, PyObject *arg);
28 fcntl_fcntl(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
50 return_value = fcntl_fcntl_impl(module, fd, code, arg);
57 "ioctl($module, fd, request, arg=0, mutate_flag=True, /)\n"
93 fcntl_ioctl_impl(PyObject *module, int fd, unsigned int code,
97 fcntl_ioctl(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
127 return_value = fcntl_ioctl_impl(module, fd, code, ob_arg, mutate_arg);
134 "flock($module, fd, operation, /)\n"
146 fcntl_flock_impl(PyObject *module, int fd, int code);
149 fcntl_flock(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
165 return_value = fcntl_flock_impl(module, fd, code);
172 "lockf($module, fd, cmd, len=0, start=0, whence=0, /)\n"
202 fcntl_lockf_impl(PyObject *module, int fd, int code, PyObject *lenobj,
206 fcntl_lockf(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
241 return_value = fcntl_lockf_impl(module, fd, code, lenobj, startobj, whence);