/libcore/luni/src/main/java/libcore/io/ |
H A D | IoBridge.java | 505 public static int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws IOException { method in class:IoBridge 512 result = Libcore.os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); 519 public static int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws IOException { method in class:IoBridge 526 result = Libcore.os.sendto(fd, buffer, flags, inetAddress, port);
|
H A D | BlockGuardOs.java | 274 @Override public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { method in class:BlockGuardOs 276 return os.sendto(fd, buffer, flags, inetAddress, port); 279 @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 284 return os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port);
|
H A D | ForwardingOs.java | 139 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 140 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 141 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, SocketAddress address) throws ErrnoException, SocketException { return os.sendto(fd, bytes, byteOffset, byteCount, flags, address); } method in class:ForwardingOs
|
H A D | Os.java | 131 public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException; method in interface:Os 132 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException; method in interface:Os 133 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, SocketAddress address) throws ErrnoException, SocketException; method in interface:Os
|
H A D | Posix.java | 197 public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { method in class:Posix 210 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { method in class:Posix 214 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, SocketAddress address) throws ErrnoException, SocketException { method in class:Posix
|
/libcore/luni/src/main/java/android/system/ |
H A D | Os.java | 413 * See <a href="http://man7.org/linux/man-pages/man2/sendto.2.html">sendto(2)</a>. 415 public static int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { return Libcore.os.sendto(fd, buffer, flags, inetAddress, port); } method in class:Os 418 * See <a href="http://man7.org/linux/man-pages/man2/sendto.2.html">sendto(2)</a>. 420 public static int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { return Libcore.os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); } method in class:Os 423 * See <a href="http://man7.org/linux/man-pages/man2/sendto.2.html">sendto( 425 /** @hide */ public static int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, SocketAddress address) throws ErrnoException, SocketException { return Libcore.os.sendto(fd, bytes, byteOffset, byteCount, flags, address); } method in class:Os [all...] |