Home
last modified time | relevance | path

Searched refs:F_DUPFD (Results 1 – 20 of 20) sorted by relevance

/external/clang/test/Sema/
Dwarn-type-safety.c120 #define F_DUPFD 10 macro
125 static const int F_DUPFD_tag __attribute__(( type_tag_for_datatype(fcntl,int) )) = F_DUPFD;
132 fcntl(0, F_DUPFD, 10); // no-warning in test_argument_with_type_tag()
136 …fcntl(0, F_DUPFD, f); // expected-warning {{argument type 'struct flock *' doesn't match specifie… in test_argument_with_type_tag()
140 fcntl(0, b ? F_DUPFD : F_SETLK, 10); // no-warning in test_tag_expresssion()
141 fcntl(0, b + F_DUPFD, 10); // no-warning in test_tag_expresssion()
142 fcntl(0, (b, F_DUPFD), 10); // expected-warning {{expression result unused}} in test_tag_expresssion()
/external/bison/m4/
Dfcntl.m48 # - supports F_DUPFD correctly
26 dnl cygwin 1.5.x F_DUPFD has wrong errno, and allows negative target
27 dnl haiku alpha 2 F_DUPFD has wrong errno
28 AC_CACHE_CHECK([whether fcntl handles F_DUPFD correctly],
34 if (fcntl (0, F_DUPFD, -1) != -1) result |= 1;
48 AC_DEFINE([FCNTL_DUPFD_BUGGY], [1], [Define this to 1 if F_DUPFD
/external/bison/lib/
Ddup2.c119 # ifndef F_DUPFD
144 # ifdef F_DUPFD in dup2()
145 result = fcntl (fd, F_DUPFD, desired_fd); in dup2()
Dfcntl.c178 case F_DUPFD: in rpl_fcntl()
185 case F_DUPFD: in rpl_fcntl()
246 result = rpl_fcntl (fd, F_DUPFD, target); in rpl_fcntl()
253 result = rpl_fcntl (fd, F_DUPFD, target); in rpl_fcntl()
Ddup-safer.c33 return fcntl (fd, F_DUPFD, STDERR_FILENO + 1); in dup_safer()
Ddup-safer-flag.c36 return fcntl (fd, (flag & O_CLOEXEC) ? F_DUPFD_CLOEXEC : F_DUPFD, in dup_safer_flag()
Dfcntl.in.h179 #ifndef F_DUPFD
180 # define F_DUPFD 1
/external/valgrind/main/none/tests/
Dfdleak_fcntl.c13 DO( fcntl(s1, F_DUPFD, s1) ); in main()
/external/kernel-headers/original/asm-generic/
Dfcntl.h91 #define F_DUPFD 0 /* dup */ macro
/external/bison/darwin-lib/
Dfcntl.h491 #ifndef F_DUPFD
492 # define F_DUPFD 1 macro
/external/bison/linux-lib/
Dfcntl.h491 #ifndef F_DUPFD
492 # define F_DUPFD 1 macro
/external/strace/
Ddesc.c57 { F_DUPFD, "F_DUPFD" },
320 case F_SETOWN: case F_DUPFD: in sys_fcntl()
369 case F_DUPFD: in sys_fcntl()
/external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
Dsyscall_parameters_restrictions.cc171 ErrorCode::OP_EQUAL, F_DUPFD, in RestrictFcntlCommands()
/external/mksh/src/
Dmain.c1151 if ((rv = fcntl(fd, F_DUPFD, FDBASE)) < 0) { in tty_init_fd()
1380 nfd = fcntl(shl_dbg_fd, F_DUPFD, FDBASE); in initio()
1419 if (fd < FDBASE && (nfd = fcntl(fd, F_DUPFD, FDBASE)) < 0 && in savefd()
Dshf.c72 nfd = fcntl(fd, F_DUPFD, FDBASE); in shf_open()
/external/valgrind/main/memcheck/tests/x86-linux/
Dscalar.c277 SY(__NR_fcntl, -1, F_DUPFD, x0); FAILx(EBADF); in main()
986 SY(__NR_fcntl64, -1, F_DUPFD, x0); FAILx(EBADF); in main()
/external/valgrind/main/memcheck/tests/darwin/
Dscalar.c868 SY(__NR_fcntl, -1, F_DUPFD, x0); FAILx(EBADF); in main()
1566 SY(__NR_fcntl64, -1, F_DUPFD, x0); FAILx(EBADF); in main()
/external/valgrind/main/include/vki/
Dvki-darwin.h271 #define VKI_F_DUPFD F_DUPFD
/external/chromium_org/third_party/lcov/
Ddescriptions.tests52 Test F_DUPFD, F_SETFL cmds of fcntl
54 Basic test for fcntl(2) using F_DUPFD argument.
78 Testcase to test that fcntl() sets EMFILE for F_DUPFD command.
/external/bison/
Dconfigure20579 if (fcntl (0, F_DUPFD, -1) != -1) result |= 1;