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

1 2 3 4 5 6 7 8 91011>>

  /external/strace/xlat/
delete_module_flags.h 11 #if defined(O_NONBLOCK) || (defined(HAVE_DECL_O_NONBLOCK) && HAVE_DECL_O_NONBLOCK)
12 XLAT(O_NONBLOCK),
inotify_init_flags.h 11 #if defined(O_NONBLOCK) || (defined(HAVE_DECL_O_NONBLOCK) && HAVE_DECL_O_NONBLOCK)
12 XLAT(O_NONBLOCK),
uffd_flags.h 11 #if defined(O_NONBLOCK) || (defined(HAVE_DECL_O_NONBLOCK) && HAVE_DECL_O_NONBLOCK)
12 XLAT(O_NONBLOCK),
timerfdflags.in 8 TFD_NONBLOCK O_NONBLOCK
sfd_flags.h 8 # define SFD_NONBLOCK O_NONBLOCK
  /external/libdaemon/libdaemon/
dnonblock.c 41 c = a | O_NONBLOCK;
43 c = a & ~O_NONBLOCK;
  /external/strace/tests/
epoll_create1.c 43 return syscall(__NR_epoll_create1, O_CLOEXEC | O_NONBLOCK) >= 0;
eventfd.c 41 return syscall(__NR_eventfd2, -1L, 1 | O_CLOEXEC | O_NONBLOCK) == 0 ?
pipe.c 48 if (pipe2(fds, O_NONBLOCK) || fds[0] != 0 || fds[1] != 1)
signalfd.c 48 return signalfd(-1, &mask, O_CLOEXEC | O_NONBLOCK) == 0 ?
userfaultfd.c 42 if (syscall(__NR_userfaultfd, 1 | O_NONBLOCK | O_CLOEXEC) != -1)
44 printf("userfaultfd(O_NONBLOCK|O_CLOEXEC|0x1) = -1 %s\n",
  /external/bison/lib/
pipe2.c 70 if ((flags & ~(O_CLOEXEC | O_NONBLOCK | O_BINARY | O_TEXT)) != 0)
79 if (_pipe (fd, 4096, flags & ~O_NONBLOCK) < 0)
86 /* O_NONBLOCK handling.
87 On native Windows platforms, O_NONBLOCK is defined by gnulib. Use the
90 if (flags & O_NONBLOCK)
98 verify (O_NONBLOCK == 0);
111 says that initially, the O_NONBLOCK and FD_CLOEXEC flags are cleared on
114 /* O_NONBLOCK handling.
115 On Unix platforms, O_NONBLOCK is defined by the system. Use fcntl(). */
116 if (flags & O_NONBLOCK)
    [all...]
  /external/toybox/toys/other/
rmmod.c 27 unsigned int flags = O_NONBLOCK|O_EXCL;
39 if (toys.optflags & FLAG_w) flags &= ~O_NONBLOCK;
  /bionic/libc/include/sys/
eventfd.h 38 #define EFD_NONBLOCK O_NONBLOCK
inotify.h 36 #include <asm/fcntl.h> /* For O_CLOEXEC and O_NONBLOCK. */
41 #define IN_NONBLOCK O_NONBLOCK
timerfd.h 32 #include <fcntl.h> /* For O_CLOEXEC and O_NONBLOCK. */
42 #define TFD_NONBLOCK O_NONBLOCK
  /development/ndk/platforms/android-21/include/sys/
eventfd.h 38 #define EFD_NONBLOCK O_NONBLOCK
inotify.h 36 #include <asm/fcntl.h> /* For O_CLOEXEC and O_NONBLOCK. */
41 #define IN_NONBLOCK O_NONBLOCK
timerfd.h 32 #include <fcntl.h> /* For O_CLOEXEC and O_NONBLOCK. */
42 #define TFD_NONBLOCK O_NONBLOCK
  /development/ndk/platforms/android-9/include/sys/
eventfd.h 37 #define EFD_NONBLOCK O_NONBLOCK
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/sys/
eventfd.h 37 #define EFD_NONBLOCK O_NONBLOCK
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/sys/
eventfd.h 37 #define EFD_NONBLOCK O_NONBLOCK
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/sys/
eventfd.h 37 #define EFD_NONBLOCK O_NONBLOCK
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/sys/
eventfd.h 37 #define EFD_NONBLOCK O_NONBLOCK
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/sys/
eventfd.h 37 #define EFD_NONBLOCK O_NONBLOCK

Completed in 720 milliseconds

1 2 3 4 5 6 7 8 91011>>