/bionic/tests/ |
D | fcntl_test.cpp | 24 TEST(fcntl, fcntl_smoke) { in TEST() argument 28 int flags = fcntl(fd, F_GETFD); in TEST() 32 int rc = fcntl(fd, F_SETFD, FD_CLOEXEC); in TEST() 35 flags = fcntl(fd, F_GETFD); in TEST() 42 TEST(fcntl, open_open64) { in TEST() argument 54 TEST(fcntl, openat_openat64) { in TEST() argument 66 TEST(fcntl, creat_creat64) { in TEST() argument 73 TEST(fcntl, posix_fadvise) { in TEST() argument 93 TEST(fcntl, fallocate_EINVAL) { in TEST() argument 116 TEST(fcntl, fallocate) { in TEST() argument [all …]
|
D | sys_socket_test.cpp | 126 ASSERT_EQ(FD_CLOEXEC, fcntl(fd_acc, F_GETFD) & FD_CLOEXEC); in TestAccept4()
|
D | stdlib_test.cpp | 175 ASSERT_EQ(O_LARGEFILE, fcntl(tf.fd, F_GETFL) & O_LARGEFILE); in TEST()
|
/bionic/libc/arch-arm64/syscalls/ |
D | fcntl.S | 5 ENTRY(fcntl) 14 END(fcntl)
|
/bionic/libc/arch-x86_64/syscalls/ |
D | fcntl.S | 5 ENTRY(fcntl) 15 END(fcntl)
|
/bionic/libc/arch-mips64/syscalls/ |
D | fcntl.S | 5 ENTRY(fcntl) 25 END(fcntl)
|
/bionic/libc/upstream-freebsd/android/include/ |
D | freebsd-compat.h | 42 #define _fcntl fcntl
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | fdopen.c | 58 if ((fdflags = fcntl(fd, F_GETFL, 0)) < 0) in fdopen()
|
/bionic/libc/include/ |
D | fcntl.h | 70 extern int fcntl(int, int, ...);
|
D | unistd.h | 149 extern int fcntl(int, int, ...);
|
/bionic/libc/bionic/ |
D | legacy_32_bit_support.cpp | 48 int fcntl(int fd, int cmd, ...) { in fcntl() function
|
D | getentropy_linux.c | 251 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC); in getentropy_urandom()
|
D | system_properties.cpp | 193 const int ret = fcntl(fd, F_SETFD, FD_CLOEXEC); in map_prop_area_rw() 264 const int ret = fcntl(fd, F_SETFD, FD_CLOEXEC); in map_prop_area()
|
D | libc_logging.cpp | 462 if (fcntl(log_fd, F_SETFL, O_NONBLOCK) == -1) { in __libc_open_log_socket()
|
/bionic/libc/dns/resolv/ |
D | res_send.c | 950 origflags = fcntl(sock, F_GETFL, 0); in connect_with_timeout() 951 fcntl(sock, F_SETFL, origflags | O_NONBLOCK); in connect_with_timeout() 972 fcntl(sock, F_SETFL, origflags); in connect_with_timeout()
|
/bionic/libc/ |
D | SYSCALLS.TXT | 114 int fcntl(int, int, void*) arm64,mips64,x86_64
|
/bionic/linker/ |
D | linker.cpp | 1819 status = TEMP_FAILURE_RETRY(fcntl(i, F_GETFL)); in nullify_closed_stdio()
|