HomeSort by relevance Sort by last modified time
    Searched refs:fd_flags (Results 1 - 15 of 15) sorted by null

  /external/perf_data_converter/src/quipper/
run_command.cc 25 int fd_flags = fcntl(fd, F_GETFD); local
26 if (fd_flags == -1) {
30 if (fcntl(fd, F_SETFD, fd_flags | FD_CLOEXEC)) {
  /external/vboot_reference/cgpt/
cgpt_nor.c 212 int fd_flags = fcntl(1, F_GETFD); local
223 fcntl(1, F_SETFD, fd_flags);
237 int fd_flags = fcntl(1, F_GETFD); local
250 fcntl(1, F_SETFD, fd_flags);
  /external/libbrillo/brillo/streams/
file_stream.cc 298 int fd_flags = HANDLE_EINTR(fcntl(file_descriptor, F_GETFL)); local
299 if (fd_flags < 0) {
303 int file_access_mode = (fd_flags & O_ACCMODE);
312 if ((fd_flags & O_NONBLOCK) == 0) {
313 fd_flags |= O_NONBLOCK;
314 if (HANDLE_EINTR(fcntl(file_descriptor, F_SETFL, fd_flags)) < 0) {
  /external/toolchain-utils/automation/common/
command_executer.py 120 fd_flags = fcntl.fcntl(fd, fcntl.F_GETFL)
121 fcntl.fcntl(fd, fcntl.F_SETFL, fd_flags | os.O_NONBLOCK)
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 730 int fd_flags; local
734 fd_flags = fcntl(fd, F_GETFD);
735 if (fd_flags == -1)
739 if (fd_flags & O_RDWR)
741 if (fd_flags & O_EXCL)
744 if (fd_flags & O_DIRECT)
  /external/autotest/client/common_lib/
logging_manager.py 599 fd_flags = fcntl.fcntl(self._fd, fcntl.F_GETFD)
601 fd_flags | fcntl.FD_CLOEXEC)
  /bionic/libc/stdio/
stdio.cpp 282 int fd_flags = fcntl(fd, F_GETFL, 0); local
283 if (fd_flags == -1) return nullptr;
284 int tmp = fd_flags & O_ACCMODE;
292 if ((mode_flags & O_APPEND) && !(fd_flags & O_APPEND)) {
293 if (fcntl(fd, F_SETFL, fd_flags | O_APPEND) == -1) return nullptr;
  /external/google-breakpad/src/testing/gtest/src/
gtest-death-test.cc 1029 int fd_flags; local
    [all...]
  /external/googletest/googletest/src/
gtest-death-test.cc 1317 int fd_flags; local
    [all...]
  /external/libaom/libaom/third_party/googletest/src/googletest/src/
gtest-death-test.cc 1042 int fd_flags; local
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-death-test.cc 1258 int fd_flags; local
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 1042 int fd_flags; local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 1042 int fd_flags; local
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_sockmap.c 476 int fd_flags = O_NONBLOCK; local
481 fcntl(fd, fd_flags);
    [all...]
  /external/epid-sdk/ext/gtest/
gtest-all.cc     [all...]

Completed in 2744 milliseconds