HomeSort by relevance Sort by last modified time
    Searched refs:F_GETFL (Results 1 - 25 of 299) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dup2.c 23 if (fcntl(fd1, F_GETFL) < 0)
25 if (fcntl(fd2, F_GETFL) >= 0)
  /external/python/cpython2/Python/
dup2.c 23 if (fcntl(fd1, F_GETFL) < 0)
25 if (fcntl(fd2, F_GETFL) >= 0)
  /external/python/cpython3/Python/
dup2.c 23 if (fcntl(fd1, F_GETFL) < 0)
25 if (fcntl(fd2, F_GETFL) >= 0)
  /external/strace/xlat/
fcntlcmds.in 5 F_GETFL 3
fcntlcmds.h 11 #if !(defined(F_GETFL) || (defined(HAVE_DECL_F_GETFL) && HAVE_DECL_F_GETFL))
12 # define F_GETFL 3
96 XLAT(F_GETFL),
  /external/libdaemon/libdaemon/
dnonblock.c 37 if ((a = fcntl(fd, F_GETFL)) < 0)
  /external/libusb/libusb/os/
poll_posix.c 36 ret = fcntl(pipefd[1], F_GETFL);
  /bionic/libc/bionic/
fchmod.cpp 55 int fd_flag = fcntl(fd, F_GETFL);
fgetxattr.cpp 51 int fd_flag = fcntl(fd, F_GETFL);
flistxattr.cpp 50 int fd_flag = fcntl(fd, F_GETFL);
fsetxattr.cpp 50 int fd_flag = fcntl(fd, F_GETFL);
  /external/ltp/testcases/kernel/syscalls/eventfd2/
eventfd2_02.c 97 fl = fcntl(fd, F_GETFL);
110 fl = fcntl(fd, F_GETFL);
  /external/ltp/testcases/kernel/syscalls/inotify_init/
inotify_init1_02.c 141 fl = fcntl(fd, F_GETFL);
158 fl = fcntl(fd, F_GETFL);
  /external/ltp/testcases/kernel/syscalls/pipe2/
pipe2_02.c 140 fl = fcntl(fds[i], F_GETFL);
158 fl = fcntl(fds[i], F_GETFL);
  /external/ltp/testcases/kernel/syscalls/signalfd4/
signalfd4_02.c 146 fl = fcntl(fd, F_GETFL);
164 fl = fcntl(fd, F_GETFL);
  /external/ltp/testcases/kernel/syscalls/socket/
socket02.c 45 {SOCK_STREAM, 0, F_GETFL, "no non-blocking"},
46 {SOCK_STREAM | SOCK_NONBLOCK, O_NONBLOCK, F_GETFL, "non-blocking"}
  /external/ltp/testcases/kernel/syscalls/socketpair/
socketpair02.c 48 {SOCK_STREAM, 0, F_GETFL, "no non-blocking"},
49 {SOCK_STREAM | SOCK_NONBLOCK, O_NONBLOCK, F_GETFL, "non-blocking"}
  /external/ltp/testcases/kernel/syscalls/timerfd/
timerfd03.c 143 fl = fcntl(fd, F_GETFL);
161 fl = fcntl(fd, F_GETFL);
  /system/core/libcutils/tests/
android_get_control_socket_test.cpp 44 #ifdef F_GETFL
46 ASSERT_GE(flags = fcntl(fd, F_GETFL), 0);
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl01.c 96 flags = fcntl(fd[2], F_GETFL, 0);
105 flags = fcntl(fd[2], F_GETFL, 0);
114 flags = fcntl(fd[2], F_GETFL, 0);
123 flags = fcntl(fd[2], F_GETFL, 0);
133 flags = fcntl(fd[2], F_GETFL, 0);
fcntl04.c 35 * Basic test for fcntl(2) using F_GETFL argument.
51 TEST(fcntl(fd, F_GETFL, 0));
54 tst_res(TFAIL | TTERRNO, "fcntl(%s, F_GETFL, 0) failed",
60 tst_res(TFAIL, "fcntl(%s, F_GETFL, 0) returned wrong "
66 tst_res(TPASS, "fcntl(%s, F_GETFL, 0) returned %lx",
  /external/conscrypt/common/src/jni/main/cpp/conscrypt/
netutil.cc 51 int flags = fcntl(fd, F_GETFL);
  /external/curl/lib/
nonblock.c 58 flags = sfcntl(sockfd, F_GETFL, 0);
  /external/libmojo/mojo/edk/test/
test_utils_posix.cc 21 int original_flags = fcntl(handle.handle, F_GETFL);
42 int original_flags = fcntl(handle.handle, F_GETFL);
  /system/core/libcutils/
android_get_control_file.cpp 78 #elif defined(F_GETFL) // Alternate lowest overhead
79 if (TEMP_FAILURE_RETRY(fcntl(fd, F_GETFL)) < 0) return -1;

Completed in 502 milliseconds

1 2 3 4 5 6 7 8 91011>>