HomeSort by relevance Sort by last modified time
    Searched defs:recvfrom (Results 1 - 19 of 19) 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)
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
recvfrom.c 10 ssize_t recvfrom(int fd, void* buf, size_t len, int flags, function
  /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 101 public int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException; method in interface:Os
102 public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException; method in interface:Os
Posix.java 132 public int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { method in class:Posix
139 public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { method in class:Posix
ForwardingOs.java 108 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
109 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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ssl.py 262 def recvfrom(self, buflen=1024, flags=0): member in class:SSLSocket
264 raise ValueError("recvfrom not allowed on instances of %s" %
267 return self._sock.recvfrom(buflen, flags)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ssl.py 262 def recvfrom(self, buflen=1024, flags=0): member in class:SSLSocket
264 raise ValueError("recvfrom not allowed on instances of %s" %
267 return self._sock.recvfrom(buflen, flags)
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_proxy.cc 1004 ssize_t KernelProxy::recvfrom(int fd, function in class:nacl_io::KernelProxy
1010 // According to the manpage, recvfrom with a null addr is identical to recv.
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prio.h 401 PRRecvfromFN recvfrom; /* Solicit (net) bytes and report source */ member in struct:PRIOMethods
    [all...]
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 

Completed in 255 milliseconds