Searched refs:fd_flags (Results 1 - 10 of 10) sorted by relevance
/third_party/ltp/testcases/kernel/syscalls/inotify_init/ |
H A D | inotify_init1_01.c | 24 int fd, fd_flags; in run() local 28 fd_flags = SAFE_FCNTL(fd, F_GETFD); in run() 29 TST_EXP_EQ_LI(fd_flags & FD_CLOEXEC, 0); in run() 34 fd_flags = SAFE_FCNTL(fd, F_GETFD); in run() 35 TST_EXP_EQ_LI(fd_flags & FD_CLOEXEC, FD_CLOEXEC); in run()
|
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
H A D | io_raw.c | 64 int fd_flags; in SPDYF_raw_new_session() local 69 fd_flags = fcntl (session->socket_fd, F_GETFL); in SPDYF_raw_new_session() 70 if ( -1 == fd_flags in SPDYF_raw_new_session() 71 || 0 != fcntl (session->socket_fd, F_SETFL, fd_flags | O_NONBLOCK)) in SPDYF_raw_new_session()
|
/third_party/libunwind/libunwind/src/aarch64/ |
H A D | Ginit.c | 104 int fd_flags = fcntl (fd, F_GETFD, 0); in set_pipe_flags() local 107 fd_flags |= FD_CLOEXEC; in set_pipe_flags() 108 fcntl (fd, F_SETFD, fd_flags); in set_pipe_flags()
|
/third_party/libunwind/libunwind/src/arm/ |
H A D | Ginit.c | 94 int fd_flags = fcntl (fd, F_GETFD, 0); in set_pipe_flags() local 97 fd_flags |= FD_CLOEXEC; in set_pipe_flags() 98 fcntl (fd, F_SETFD, fd_flags); in set_pipe_flags()
|
/third_party/libunwind/libunwind/src/riscv/ |
H A D | Ginit.c | 115 int fd_flags = fcntl (fd, F_GETFD, 0); in set_pipe_flags() local 118 fd_flags |= FD_CLOEXEC; in set_pipe_flags() 119 fcntl (fd, F_SETFD, fd_flags); in set_pipe_flags()
|
/third_party/libunwind/libunwind/src/x86_64/ |
H A D | Ginit.c | 91 int fd_flags = fcntl (fd, F_GETFD, 0); in set_pipe_flags() local 94 fd_flags |= FD_CLOEXEC; in set_pipe_flags() 95 fcntl (fd, F_SETFD, fd_flags); in set_pipe_flags()
|
/third_party/NuttX/include/nuttx/fs/ |
H A D | dirent_fs.h | 246 unsigned int fd_flags; member
|
/third_party/googletest/googletest/src/ |
H A D | gtest-death-test.cc | 1310 int fd_flags; in ExecDeathTestSpawnChild() local 1312 GTEST_DEATH_TEST_CHECK_SYSCALL_(fd_flags = fcntl(close_fd, F_GETFD)); in ExecDeathTestSpawnChild() 1314 fcntl(close_fd, F_SETFD, fd_flags | FD_CLOEXEC)); in ExecDeathTestSpawnChild()
|
/third_party/node/deps/googletest/src/ |
H A D | gtest-death-test.cc | 1276 int fd_flags; in ExecDeathTestSpawnChild() local 1278 GTEST_DEATH_TEST_CHECK_SYSCALL_(fd_flags = fcntl(close_fd, F_GETFD)); in ExecDeathTestSpawnChild() 1280 fcntl(close_fd, F_SETFD, fd_flags | FD_CLOEXEC)); in ExecDeathTestSpawnChild()
|
/third_party/mesa3d/src/gtest/src/ |
H A D | gtest-death-test.cc | 1335 int fd_flags; in ExecDeathTestSpawnChild() local 1337 GTEST_DEATH_TEST_CHECK_SYSCALL_(fd_flags = fcntl(close_fd, F_GETFD)); in ExecDeathTestSpawnChild() 1339 fd_flags | FD_CLOEXEC)); in ExecDeathTestSpawnChild()
|
Completed in 12 milliseconds