Searched refs:sendto (Results 1 - 12 of 12) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java268 @Override public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { method in class:BlockGuardOs
270 return os.sendto(fd, buffer, flags, inetAddress, port);
273 @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
278 return os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port);
H A DForwardingOs.java133 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
134 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
H A DIoBridge.java506 public static int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws IOException { method in class:IoBridge
513 result = Libcore.os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port);
520 public static int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws IOException { method in class:IoBridge
527 result = Libcore.os.sendto(fd, buffer, flags, inetAddress, port);
H A DOs.java125 public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException; method in interface:Os
126 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException; method in interface:Os
H A DPosix.java191 public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { method in class:Posix
204 public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inetAddress, int port) throws ErrnoException, SocketException { method in class:Posix
/libcore/luni/src/main/java/java/net/
H A DPlainSocketImpl.java468 Libcore.os.sendto(fd, buffer, 0, 1, MSG_OOB, null, 0);
504 int bytesWritten = IoBridge.sendto(fd, buffer, offset, byteCount, 0, null, 0);
512 IoBridge.sendto(fd, buffer, offset, byteCount, 0, address, port);
H A DPlainDatagramSocketImpl.java184 IoBridge.sendto(fd, packet.getData(), packet.getOffset(), packet.getLength(), 0, address,
/libcore/luni/src/main/java/android/system/
H A DOs.java388 * See <a href="http://man7.org/linux/man-pages/man2/sendto.2.html">sendto(2)</a>.
390 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
393 * See <a href="http://man7.org/linux/man-pages/man2/sendto.2.html">sendto(2)</a>.
395 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
/libcore/luni/src/test/java/libcore/io/
H A DOsTest.java245 int sent = Libcore.os.sendto(clientFd, input, 0, address.getAddress(), address.getPort());
251 sent = Libcore.os.sendto(clientFd, input, 0, address.getAddress(), address.getPort());
/libcore/luni/src/main/java/java/nio/
H A DDatagramChannelImpl.java306 sendCount = IoBridge.sendto(fd, source, 0, isa.getAddress(), isa.getPort());
438 result = IoBridge.sendto(fd, buf, 0, null, 0);
H A DSocketChannelImpl.java403 writeCount = IoBridge.sendto(fd, src, 0, null, 0);
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp1244 return NET_FAILURE_RETRY(env, ssize_t, sendto, javaFd, bytes.get() + byteOffset, byteCount, flags, to, sa_len);

Completed in 406 milliseconds