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

  /bionic/libc/arch-arm/syscalls/
sendto.S 6 ENTRY(sendto) function
18 END(sendto)
  /bionic/libc/arch-mips/syscalls/
sendto.S 4 .globl sendto
6 .ent sendto
8 sendto: label
22 .end sendto
  /bionic/libc/arch-x86/syscalls/
sendto.S 6 ENTRY(sendto) function
25 END(sendto)
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 167 @Override public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { method in class:BlockGuardOs
169 return os.sendto(fd, buffer, flags, inetAddress, port);
172 @Override public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { method in class:BlockGuardOs
177 return os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port);
IoBridge.java 459 public static int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws IOException { method in class:IoBridge
466 result = Libcore.os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port);
473 public static int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws IOException { method in class:IoBridge
480 result = Libcore.os.sendto(fd, buffer, flags, inetAddress, port);
Os.java 104 public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException; method in interface:Os
105 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException; method in interface:Os
Posix.java 146 public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { method in class:Posix
153 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { method in class:Posix
ForwardingOs.java 112 public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { return os.sendto(fd, buffer, flags, inetAddress, port); } method in class:ForwardingOs
113 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { return os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); } method in class:ForwardingOs
  /libcore/luni/src/main/java/java/net/
PlainSocketImpl.java 471 Libcore.os.sendto(fd, buffer, 0, 1, MSG_OOB, null, 0);
507 int bytesWritten = IoBridge.sendto(fd, buffer, offset, byteCount, 0, null, 0);
515 IoBridge.sendto(fd, buffer, offset, byteCount, 0, address, port);
PlainDatagramSocketImpl.java 182 IoBridge.sendto(fd, packet.getData(), packet.getOffset(), packet.getLength(), 0, address, port);
  /ndk/sources/host-tools/sed-4.2.1/lib/
unistd.in.h 75 # undef sendto macro
76 # define sendto sendto_used_without_including_sys_socket_h macro
  /external/quake/quake/src/WinQuake/
mplpc.cpp 777 sendto(SOCKET s, const char *buf, int len, int flags, const struct sockaddr *to, int tolen) function
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 

Completed in 153 milliseconds