HomeSort by relevance Sort by last modified time
    Searched refs:FIONREAD (Results 101 - 125 of 125) sorted by null

1 2 3 45

  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
sockios.h 17 #define SIOCINQ FIONREAD
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
sockios.h 17 #define SIOCINQ FIONREAD
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
sockios.h 17 #define SIOCINQ FIONREAD
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
sockios.h 17 #define SIOCINQ FIONREAD
  /external/chromium/third_party/libevent/
buffer.c 356 #if defined(FIONREAD)
359 if (ioctlsocket(fd, FIONREAD, &lng) == -1 || (n=lng) <= 0) {
361 if (ioctl(fd, FIONREAD, &n) == -1 || n <= 0) {
381 /* If we don't have FIONREAD, we might waste some space here */
  /external/chromium_org/third_party/libevent/
buffer.c 356 #if defined(FIONREAD)
359 if (ioctlsocket(fd, FIONREAD, &lng) == -1 || (n=lng) <= 0) {
361 if (ioctl(fd, FIONREAD, &n) == -1 || n <= 0) {
381 /* If we don't have FIONREAD, we might waste some space here */
  /external/chromium_org/device/bluetooth/
bluetooth_socket_chromeos.cc 55 if (ioctl(fd_, FIONREAD, &count) < 0) {
  /external/strace/
term.c 355 #ifdef FIONREAD
356 case FIONREAD:
  /external/chromium_org/base/
sync_socket_posix.cc 186 if (ioctl(handle_, FIONREAD, &number_chars) == -1) {
  /external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
syscall_parameters_restrictions.cc 102 sandbox->Cond(1, ErrorCode::TP_32BIT, ErrorCode::OP_EQUAL, FIONREAD,
  /external/chromium/base/files/
file_path_watcher_linux.cc 180 int ioctl_result = HANDLE_EINTR(ioctl(inotify_fd_, FIONREAD,
  /external/bluetooth/bluedroid/btif/src/
btif_sock_rfc.c 894 (ioctl(rs->fd, FIONREAD, &size) == 0 && size))
919 if(need_close || ioctl(rs->fd, FIONREAD, &size) != 0 || size == 0 )
    [all...]
  /external/chromium_org/base/files/
file_path_watcher_linux.cc 184 int ioctl_result = HANDLE_EINTR(ioctl(inotify_fd, FIONREAD,
  /external/dhcpcd/
if-bsd.c 330 if (ioctl(fd, FIONREAD, &len) == -1)
  /bootable/recovery/minadbd/
fdevent.c 554 ioctl(subproc_fd, FIONREAD, &rcount);
  /external/qemu/slirp/
socket.c 488 * XXX Shouldn't FIONREAD packets destined for port 53,
493 ioctlsocket(so->s, FIONREAD, &n);
  /external/valgrind/main/include/vki/
vki-mips32-linux.h 614 #define VKI_TIOCINQ FIONREAD
    [all...]
vki-darwin.h 899 #define VKI_FIONREAD FIONREAD
  /frameworks/base/core/jni/
android_net_LocalSocketImpl.cpp 392 int ret = ioctl(fd, FIONREAD, &avail);
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 52 Libcore.os.ioctlInt(fd, FIONREAD, available);
OsConstants.java 179 public static final int FIONREAD = placeholder();
    [all...]
  /system/core/adb/
fdevent.c 554 ioctl(subproc_fd, FIONREAD, &rcount);
  /external/qemu/
sockets.c 942 if (ioctlsocket(fd, FIONREAD, &opt) < 0)
949 if (ioctl(fd, FIONREAD, &opt) < 0)
    [all...]
  /sdk/emulator/opengl/tests/event_injector/
sockets.c 946 if (ioctlsocket(fd, FIONREAD, &opt) < 0)
953 if (ioctl(fd, FIONREAD, &opt) < 0)
    [all...]
  /libcore/luni/src/main/native/
libcore_io_OsConstants.cpp 193 initConstant(env, c, "FIONREAD", FIONREAD);

Completed in 6354 milliseconds

1 2 3 45