Home | History | Annotate | Download | only in Modules

Lines Matching defs:arg

30 /* fcntl(fd, opt, [arg]) */

37 long arg;
47 "fcntl string arg too long");
62 arg = 0;
66 conv_descriptor, &fd, &code, &arg)) {
70 ret = fcntl(fd, code, arg);
80 "fcntl(fd, opt, [arg])\n\
84 available from the fcntl module. The argument arg is optional, and\n\
85 defaults to 0; it may be an int or a string. If arg is given as a string,\n\
87 resulting value put in the arg buffer by the operating system. The length\n\
88 of the arg string is not allowed to exceed 1024 bytes. If the arg given\n\
93 /* ioctl(fd, opt, [arg]) */
114 int arg;
124 char *arg;
130 arg = buf;
133 arg = str;
139 "ioctl string arg too long");
145 arg = buf;
148 if (buf == arg) {
150 ret = ioctl(fd, code, arg);
154 ret = ioctl(fd, code, arg);
176 "ioctl string arg too long");
192 arg = 0;
196 conv_descriptor, &fd, &code, &arg)) {
201 ret = ioctl(fd, code, (void *)arg);
203 ret = ioctl(fd, code, arg);
215 "ioctl(fd, opt[, arg[, mutate_flag]])\n\
221 The argument arg is optional, and defaults to 0; it may be an int or a\n\
238 the buffer. The length of the arg buffer in this case is not allowed to\n\
241 If the arg given is an integer or if none is specified, the result value is\n\