Home | History | Annotate | Download | only in lib

Lines Matching defs:target

155    F_DUPFD - duplicate FD, with int ARG being the minimum target fd.
160 target fd. If successful, return the duplicate, which will not be
180 int target = va_arg (arg, int);
181 result = dupfd (fd, target, 0);
187 int target = va_arg (arg, int);
188 /* Detect invalid target; needed for cygwin 1.5.x. */
189 if (target < 0 || getdtablesize () <= target)
200 result = fcntl (fd, action, target);
219 int target = va_arg (arg, int);
222 result = dupfd (fd, target, O_CLOEXEC);
235 result = fcntl (fd, action, target);
246 result = rpl_fcntl (fd, F_DUPFD, target);
253 result = rpl_fcntl (fd, F_DUPFD, target);