Home | History | Annotate | Download | only in clinic

Lines Matching defs:arg

6 "fcntl($module, fd, cmd, arg=0, /)\n"
13 "the relevant C header files. The argument arg is optional, and\n"
14 "defaults to 0; it may be an int or a string. If arg is given as a string,\n"
16 "resulting value put in the arg buffer by the operating system. The length\n"
17 "of the arg string is not allowed to exceed 1024 bytes. If the arg given\n"
25 fcntl_fcntl_impl(PyObject *module, int fd, int code, PyObject *arg);
33 PyObject *arg = NULL;
36 conv_descriptor, &fd, &code, &arg)) {
39 return_value = fcntl_fcntl_impl(module, fd, code, arg);
46 "ioctl($module, fd, request, arg=0, mutate_flag=True, /)\n"
55 "The argument `arg` is optional, and defaults to 0; it may be an int or a\n"
71 "the buffer. The length of the arg buffer in this case is not allowed to\n"
74 "If the arg given is an integer or if none is specified, the result value is\n"