/bionic/libc/bionic/ |
D | lockf.cpp | 46 return fcntl(fd, F_SETLK64, &fl); in lockf64() 51 return fcntl(fd, F_SETLKW64, &fl); in lockf64() 56 return fcntl(fd, F_SETLK64, &fl); in lockf64() 61 if (fcntl(fd, F_GETLK64, &fl) == -1) return -1; in lockf64()
|
D | dup2.cpp | 37 if (fcntl(old_fd, F_GETFD) == -1) { in dup2()
|
D | flistxattr.cpp | 50 int fd_flag = fcntl(fd, F_GETFL); in flistxattr()
|
D | fchmod.cpp | 55 int fd_flag = fcntl(fd, F_GETFL); in fchmod()
|
D | fsetxattr.cpp | 50 int fd_flag = fcntl(fd, F_GETFL); in fsetxattr()
|
D | fgetxattr.cpp | 51 int fd_flag = fcntl(fd, F_GETFL); in fgetxattr()
|
D | libc_init_common.cpp | 140 int status = TEMP_FAILURE_RETRY(fcntl(i, F_GETFL)); in __nullify_closed_stdio()
|
D | legacy_32_bit_support.cpp | 51 int fcntl(int fd, int cmd, ...) { in fcntl() function
|
/bionic/tests/ |
D | fcntl_test.cpp | 34 TEST(fcntl, fcntl_smoke) { in TEST() argument 38 int flags = fcntl(fd, F_GETFD); in TEST() 42 int rc = fcntl(fd, F_SETFD, FD_CLOEXEC); in TEST() 45 flags = fcntl(fd, F_GETFD); in TEST() 52 TEST(fcntl, open_open64) { in TEST() argument 64 TEST(fcntl, openat_openat64) { in TEST() argument 76 TEST(fcntl, creat_creat64) { in TEST() argument 83 TEST(fcntl, posix_fadvise) { in TEST() argument 103 TEST(fcntl, fallocate_EINVAL) { in TEST() argument 126 TEST(fcntl, fallocate) { in TEST() argument [all …]
|
D | utils.h | 179 int flags = fcntl(fd, F_GETFD); in AssertCloseOnExec()
|
D | stdlib_test.cpp | 416 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/include/bits/ |
D | fcntl.h | 46 int fcntl(int __fd, int __cmd, ...);
|
/bionic/tests/headers/posix/ |
D | fcntl_h.c | 115 FUNCTION(fcntl, int (*f)(int, int, ...)); in fcntl_h()
|
/bionic/libc/ |
D | SECCOMP_WHITELIST_APP.TXT | 49 int fcntl:fcntl(int fd, int cmd, ... /* arg */ ) arm,x86,mips
|
D | SYSCALLS.TXT | 123 int fcntl(int, int, void*) lp64
|
/bionic/libc/stdio/ |
D | stdio.cpp | 282 int fd_flags = fcntl(fd, F_GETFL, 0); in fdopen() 293 if (fcntl(fd, F_SETFL, fd_flags | O_APPEND) == -1) return nullptr; in fdopen() 297 if ((mode_flags & O_CLOEXEC) && !((tmp = fcntl(fd, F_GETFD)) & FD_CLOEXEC)) { in fdopen() 298 fcntl(fd, F_SETFD, tmp | FD_CLOEXEC); in fdopen() 1214 int new_fd = fcntl(fds[child], F_DUPFD_CLOEXEC, 0); in popen()
|
/bionic/benchmarks/tests/ |
D | interface_test.cpp | 81 ASSERT_NE(-1, fcntl(fds[0], F_SETFL, O_NONBLOCK)); in Exec()
|
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_system_tests.cpp | 56 ASSERT_NE(-1, fcntl(fds[0], F_SETFL, O_NONBLOCK)); in Exec()
|
/bionic/libc/dns/resolv/ |
D | res_send.c | 986 origflags = fcntl(sock, F_GETFL, 0); in connect_with_timeout() 987 fcntl(sock, F_SETFL, origflags | O_NONBLOCK); in connect_with_timeout() 1007 fcntl(sock, F_SETFL, origflags); in connect_with_timeout()
|
/bionic/libc/tools/ |
D | posix-2013.txt | 234 fcntl
|
/bionic/docs/ |
D | status.md | 155 * <fcntl.h> `fallocate`, `posix_fadvise`, `posix_fallocate`, `splice`, `tee`, `vmsplice`.
|
/bionic/tools/versioner/platforms/ |
D | libc.map.txt | 344 fcntl;
|