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

1 2 3 4

  /bionic/libc/arch-arm/syscalls/
recvfrom.S 5 ENTRY(recvfrom) function
22 END(recvfrom)
  /bionic/libc/arch-arm64/syscalls/
recvfrom.S 5 ENTRY(recvfrom) function
14 END(recvfrom)
  /bionic/libc/arch-mips/syscalls/
recvfrom.S 5 ENTRY(recvfrom) function
19 END(recvfrom)
  /bionic/libc/arch-mips64/syscalls/
recvfrom.S 5 ENTRY(recvfrom) function
25 END(recvfrom)
  /bionic/libc/arch-x86/syscalls/
recvfrom.S 5 ENTRY(recvfrom) function
35 END(recvfrom)
  /bionic/libc/arch-x86_64/syscalls/
recvfrom.S 5 ENTRY(recvfrom) function
16 END(recvfrom)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/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.15-4.8/sysroot/usr/include/x86_64-linux-gnu/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
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
recvfrom.c 2 Implement the recvfrom API.
21 The recvfrom routine waits for receive data from a remote network
48 recvfrom ( function
  /system/netd/libnetdutils/include/netdutils/
Syscalls.h 73 virtual StatusOr<Slice> recvfrom(Fd sock, const Slice dst, int flags, sockaddr* src,
163 StatusOr<Slice> recvfrom(Fd sock, const Slice dst, int flags) const { function in class:android::netdutils::Syscalls
164 return recvfrom(sock, dst, flags, nullptr, nullptr);
168 StatusOr<std::pair<Slice, SockaddrT>> recvfrom(Fd sock, const Slice dst, int flags) const { function in class:android::netdutils::Syscalls
171 ASSIGN_OR_RETURN(auto used, recvfrom(sock, dst, flags, asSockaddrPtr(&addr), &addrlen));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ssl.py 253 def recvfrom(self, buflen=1024, flags=0): member in class:SSLSocket
255 raise ValueError("recvfrom not allowed on instances of %s" %
258 return self._sock.recvfrom(buflen, flags)
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/curl/lib/
setup-os400.h 213 #define recvfrom Curl_os400_recvfrom macro
  /libcore/ojluni/src/main/java/java/net/
PlainDatagramSocketImpl.java 153 IoBridge.recvfrom(false, fd, p.getData(), p.getOffset(), p.bufLength, flags, p,
  /prebuilts/go/darwin-x86/src/syscall/
syscall_linux_386.go 174 // the 6-argument calls like sendto and recvfrom. Instead the
286 func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) { func
syscall_linux_s390x.go 217 func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) { func
  /prebuilts/go/linux-x86/src/syscall/
syscall_linux_386.go 174 // the 6-argument calls like sendto and recvfrom. Instead the
286 func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) { func
syscall_linux_s390x.go 217 func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) { func
  /external/python/cpython2/Lib/
ssl.py 785 def recvfrom(self, buflen=1024, flags=0): member in class:SSLSocket
788 raise ValueError("recvfrom not allowed on instances of %s" %
791 return self._sock.recvfrom(buflen, flags)
    [all...]
  /external/python/cpython3/Lib/
ssl.py 1006 def recvfrom(self, buflen=1024, flags=0): member in class:SSLSocket
    [all...]
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 272 @Override public int recvfrom(FileDescriptor fd, ByteBuffer buffer, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { method in class:BlockGuardOs
274 return os.recvfrom(fd, buffer, flags, srcAddress);
277 @Override public int recvfrom(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetSocketAddress srcAddress) throws ErrnoException, SocketException { method in class:BlockGuardOs
279 return os.recvfrom(fd, bytes, byteOffset, byteCount, flags, srcAddress);
IoBridge.java 579 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
583 result = Libcore.os.recvfrom(fd, bytes, byteOffset, byteCount, flags, srcAddress);
591 public static int recvfrom(boolean isRead, FileDescriptor fd, ByteBuffer buffer, int flags, DatagramPacket packet, boolean isConnected) throws IOException { method in class:IoBridge
595 result = Libcore.os.recvfrom(fd, buffer, flags, srcAddress);

Completed in 233 milliseconds

1 2 3 4