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

  /bionic/libc/arch-arm/syscalls/
recvfrom.S 6 ENTRY(recvfrom) function
18 END(recvfrom)
  /bionic/libc/arch-mips/syscalls/
recvfrom.S 4 .globl recvfrom
6 .ent recvfrom
8 recvfrom: label
22 .end recvfrom
  /bionic/libc/arch-x86/syscalls/
recvfrom.S 6 ENTRY(recvfrom) function
25 END(recvfrom)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
socket2.h 55 socklen_t *__restrict __addr_len), recvfrom);
61 __warnattr ("recvfrom called with bigger length than size of "
65 recvfrom (int __fd, void *__restrict __buf, size_t __n, int __flags, function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
socket2.h 55 socklen_t *__restrict __addr_len), recvfrom);
61 __warnattr ("recvfrom called with bigger length than size of "
65 recvfrom (int __fd, void *__restrict __buf, size_t __n, int __flags, function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
socket2.h 55 socklen_t *__restrict __addr_len), recvfrom);
61 __warnattr ("recvfrom called with bigger length than size of "
65 recvfrom (int __fd, void *__restrict __buf, size_t __n, int __flags, function
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 157 @Override public int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { method in class:BlockGuardOs
159 return os.recvfrom(fd, buffer, flags, srcAddress);
162 @Override public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { method in class:BlockGuardOs
164 return os.recvfrom(fd, bytes, byteOffset, byteCount, flags, srcAddress);
IoBridge.java 502 public static int recvfrom(boolean isRead, FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, DatagramPacket packet, boolean isConnected) throws IOException { method in class:IoBridge
506 result = Libcore.os.recvfrom(fd, bytes, byteOffset, byteCount, flags, srcAddress);
514 public static int recvfrom(boolean isRead, FileDescriptor fd, ByteBuffer buffer, int flags, DatagramPacket packet, boolean isConnected) throws IOException { method in class:IoBridge
518 result = Libcore.os.recvfrom(fd, buffer, flags, srcAddress);
Os.java 100 public int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException; method in interface:Os
101 public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException; method in interface:Os
Posix.java 131 public int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { method in class:Posix
138 public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { method in class:Posix
ForwardingOs.java 107 public int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { return os.recvfrom(fd, buffer, flags, srcAddress); } method in class:ForwardingOs
108 public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { return os.recvfrom(fd, bytes, byteOffset, byteCount, flags, srcAddress); } method in class:ForwardingOs
  /libcore/luni/src/main/java/java/net/
PlainDatagramSocketImpl.java 161 IoBridge.recvfrom(false, fd, pack.getData(), pack.getOffset(), pack.getLength(), flags, pack, isNativeConnected);
  /ndk/sources/host-tools/sed-4.2.1/lib/
unistd.in.h 73 # undef recvfrom macro
74 # define recvfrom recvfrom_used_without_including_sys_socket_h macro
  /external/quake/quake/src/WinQuake/
mplpc.cpp 728 recvfrom(SOCKET s, char *buf, int len, int flags, struct sockaddr *from, function
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 

Completed in 219 milliseconds