Home | History | Annotate | Download | only in lib

Lines Matching defs:arg

150    using the argument ARG further described below.  This replacement
155 F_DUPFD - duplicate FD, with int ARG being the minimum target fd.
159 F_DUPFD_CLOEXEC - duplicate FD, with int ARG being the minimum
163 F_GETFD - ARG need not be present. If successful, return a
169 rpl_fcntl (int fd, int action, /* arg */...)
171 va_list arg;
173 va_start (arg, action);
180 int target = va_arg (arg, int);
187 int target = va_arg (arg, int);
219 int target = va_arg (arg, int);
301 void *p = va_arg (arg, void *);
309 va_end (arg);