Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Ddup.cpp46 if (fcntl(old_fd, F_GETFD) == -1) { in dup2()
Dspawn.cpp47 int v = fcntl(i, F_GETFD); in set_cloexec()
109 int flags = fcntl(fd, F_GETFD, 0); in Do()
/bionic/libc/kernel/uapi/asm-generic/
Dfcntl.h86 #define F_GETFD 1 macro
/bionic/tests/headers/posix/
Dfcntl_h.c36 MACRO(F_GETFD); in fcntl_h()
/bionic/tests/
Dsys_mman_test.cpp281 int f = fcntl(fd, F_GETFD); in TEST()
288 f = fcntl(fd, F_GETFD); in TEST()
Dfcntl_test.cpp43 int flags = fcntl(fd, F_GETFD); in TEST()
50 flags = fcntl(fd, F_GETFD); in TEST()
Dutils.h183 int flags = fcntl(fd, F_GETFD); in CloseOnExec()
/bionic/libc/stdio/
Dstdio.cpp292 if ((mode_flags & O_CLOEXEC) && !((tmp = fcntl(fd, F_GETFD)) & FD_CLOEXEC)) { in fdopen()