Home
last modified time | relevance | path

Searched refs:F_GETFD (Results 1 – 25 of 133) sorted by relevance

123456

/third_party/ltp/testcases/kernel/syscalls/close_range/
Dclose_range02.c54 TST_EXP_FAIL(fcntl(fd, F_GETFD), EBADF, in run()
56 TST_EXP_FAIL(fcntl(100, F_GETFD), EBADF); in run()
77 TST_EXP_FD_SILENT(fcntl(fd, F_GETFD), "fcntl(%d, F_GETFD)", fd); in run()
95 TST_EXP_FAIL(fcntl(fd, F_GETFD), EBADF, in run()
102 TST_EXP_PASS(fcntl(fd, F_GETFD), "%d is open", fd); in run()
Dclose_range01.c73 int present = SAFE_FCNTL(fd[i], F_GETFD) & FD_CLOEXEC; in check_cloexec()
87 if (fcntl(fd[i], F_GETFD) > -1) in check_closed()
/third_party/ltp/testcases/kernel/syscalls/epoll_wait/
Depoll_wait05.c110 if (fcntl(sockfd_client, F_GETFD) > 0) in cleanup()
113 if (fcntl(sockfd_server, F_GETFD) > 0) in cleanup()
116 if (fcntl(epfd, F_GETFD) > 0) in cleanup()
/third_party/ltp/testcases/kernel/syscalls/eventfd2/
Deventfd2_01.c25 flags = SAFE_FCNTL(fd, F_GETFD); in run()
30 flags = SAFE_FCNTL(fd, F_GETFD); in run()
/third_party/ltp/testcases/kernel/syscalls/inotify_init/
Dinotify_init1_01.c28 fd_flags = SAFE_FCNTL(fd, F_GETFD); in run()
34 fd_flags = SAFE_FCNTL(fd, F_GETFD); in run()
/third_party/curl/src/
Dtool_main.c95 while((fcntl(STDIN_FILENO, F_GETFD) == -1) || in main_checkfds()
96 (fcntl(STDOUT_FILENO, F_GETFD) == -1) || in main_checkfds()
97 (fcntl(STDERR_FILENO, F_GETFD) == -1)) in main_checkfds()
/third_party/musl/libc-test/src/functionalext/supplement/linux/linux_gtest/
Dlinux_eventfd_test.cpp26 int flags = fcntl(eventFd, F_GETFD);
43 int flags = fcntl(eventFd, F_GETFD);
/third_party/ltp/testcases/kernel/syscalls/socket/
Dsocket02.c30 {SOCK_STREAM, 0, F_GETFD, "no close-on-exec"},
31 {SOCK_STREAM | SOCK_CLOEXEC, FD_CLOEXEC, F_GETFD, "close-on-exec"},
/third_party/ltp/testcases/kernel/syscalls/pipe2/
Dpipe2_01.c29 {0, F_GETFD, 1, "Test pipe2 with 0 flag"},
30 {O_CLOEXEC, F_GETFD, 1, "Test pipe2 using O_CLOEXEC flag"},
/third_party/ltp/testcases/kernel/syscalls/timerfd/
Dtimerfd02.c141 coe = fcntl(fd, F_GETFD); in main()
159 coe = fcntl(fd, F_GETFD); in main()
/third_party/ltp/testcases/kernel/syscalls/socketpair/
Dsocketpair02.c33 {SOCK_STREAM, 0, F_GETFD, "no close-on-exec"},
34 {SOCK_STREAM | SOCK_CLOEXEC, FD_CLOEXEC, F_GETFD, "close-on-exec"},
/third_party/ltp/testcases/kernel/syscalls/signalfd4/
Dsignalfd4_01.c145 coe = fcntl(fd, F_GETFD); in main()
163 coe = fcntl(fd, F_GETFD); in main()
/third_party/ltp/testcases/kernel/syscalls/fcntl/
Dfcntl01.c143 if ((flags = fcntl(fd[2], F_GETFD, 0)) < 0) in main()
151 if ((flags = fcntl(fd[2], F_GETFD, 0)) == -1) in main()
/third_party/musl/libc-test/src/functionalext/supplement/fcntl/fcntl_gtest/
Dfcntl_fcntl_test.cpp26 int fdFlags = fcntl(fd, F_GETFD);
145 int getFlagResult = fcntl(fd, F_GETFD);
/third_party/musl/porting/liteos_a/user/src/legacy/
Disastream.c7 return fcntl(fd, F_GETFD) < 0 ? -1 : 0; in isastream()
/third_party/musl/src/legacy/
Disastream.c8 return fcntl(fd, F_GETFD) < 0 ? -1 : 0; in isastream()
/third_party/musl/src/unistd/
Dfchdir.c9 if (ret != -EBADF || __syscall(SYS_fcntl, fd, F_GETFD) < 0) in fchdir()
Ddup2.c13 r = __syscall(SYS_fcntl, old, F_GETFD); in dup2()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
D11-1.c34 flags = fcntl(fd, F_GETFD); in main()
/third_party/musl/src/stat/
Dfchmod.c9 if (ret != -EBADF || __syscall(SYS_fcntl, fd, F_GETFD) < 0) in fchmod()
/third_party/ltp/testcases/kernel/syscalls/pidfd_open/
Dpidfd_open01.c28 flag = SAFE_FCNTL(pidfd, F_GETFD); in run()
/third_party/musl/arch/mips/bits/
Dfcntl.h23 #define F_GETFD 1 macro
/third_party/musl/arch/riscv64/bits/
Dfcntl.h23 #define F_GETFD 1 macro
/third_party/musl/arch/arm/bits/
Dfcntl.h23 #define F_GETFD 1 macro
/third_party/musl/arch/powerpc/bits/
Dfcntl.h23 #define F_GETFD 1 macro

123456