HomeSort by: relevance | last modified time | path
    Searched refs:fdflags (Results 1 - 7 of 7) 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;
  /src/bin/sh/
builtins.def 61 fdflagscmd fdflags
  /src/etc/
rc 68 fdflags -s +cloexec 7 8
90 fdflags -s +cloexec 9
  /src/tests/bin/sh/
t_builtins.sh 877 atf_test_case fdflags
880 "Tests basic operation of sh builtin 'fdflags' (NetBSD extension)"
883 have_builtin fdflags || return 0
891 have_builtin fdflags || return 0
896 atf_set "descr" "Checks verbose operation of fdflags"
899 have_builtin fdflags || return 0
904 atf_set "descr" "tests verbose operation of fdflags -s"
907 have_builtin fdflags || return 0
912 atf_set "descr" "Checks operation of fdflags with more than one fd"
915 have_builtin fdflags || return
    [all...]
  /src/sys/miscfs/genfs/
genfs_rename.c 1056 unsigned long fdflags, unsigned long fflags,
1061 if ((fdflags | fflags) & (immutable | append))

Completed in 14 milliseconds