HomeSort by: relevance | last modified time | path
    Searched defs:fdflags (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libc/compat/sys/
compat_dup3.c 47 int fdflags; variable in typeref:typename:int
64 fdflags = FD_CLOEXEC|FD_CLOFORK;
67 fdflags = FD_CLOEXEC;
70 fdflags = FD_CLOFORK;
75 return fcntl(newfd, F_SETFD, fdflags);
  /src/lib/libc/stdio/
fdopen.c 67 int flags, oflags, fdflags, tmp; local in function:__weak_alias
87 if ((fdflags = fcntl(fd, F_GETFL, 0)) < 0)
89 tmp = fdflags & O_ACCMODE;
114 if ((oflags & O_APPEND) && !(fdflags & O_APPEND))
vdprintf.c 66 int ret, fdflags, tmp; local in function:__weak_alias
82 if ((fdflags = fcntl(fd, F_GETFL, 0)) == -1)
85 tmp = fdflags & O_ACCMODE;

Completed in 29 milliseconds