Home
last modified time | relevance | path

Searched refs:sendto (Results 1 – 14 of 14) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java358 …@Override public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddre… in sendto() method in BlockGuardOs
360 return super.sendto(fd, buffer, flags, inetAddress, port); in sendto()
363 …@Override public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int fl… in sendto() method in BlockGuardOs
368 return super.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); in sendto()
466 @Override public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, in sendto() method in BlockGuardOs
469 return super.sendto(fd, bytes, byteOffset, byteCount, flags, address); in sendto()
DForwardingOs.java192 …t sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throw… in sendto() method in ForwardingOs
193sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inet… in sendto() method in ForwardingOs
194sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, SocketAddress ad… in sendto() method in ForwardingOs
DOs.java160 …public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int po… in sendto() method
161 …public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetA… in sendto() method
162 …public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, Socke… in sendto() method
DIoBridge.java545 …public static int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags… in sendto() method in IoBridge
552 result = Libcore.os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); in sendto()
559 …public static int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress,… in sendto() method in IoBridge
566 result = Libcore.os.sendto(fd, buffer, flags, inetAddress, port); in sendto()
DLinux.java217 …public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int po… in sendto() method in Linux
230 …public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetA… in sendto() method in Linux
234 …public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, Socke… in sendto() method in Linux
/libcore/luni/src/main/java/android/system/
DOs.java525sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws … in sendto() method in Os
530sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inet… in sendto() method in Os
535sendto(@NonNull FileDescriptor fd, @NonNull byte[] bytes, int byteOffset, int byteCount, int flags… in sendto() method in Os
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java334 int sent = Os.sendto(clientFd, input, 0, address.getAddress(), address.getPort()); in checkByteBufferPositions_sendto_recvfrom()
340 sent = Os.sendto(clientFd, input, 0, address.getAddress(), address.getPort()); in checkByteBufferPositions_sendto_recvfrom()
398 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectSendtoException()
432 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectBindConnectSendtoSuccess()
448 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectBindConnectSendtoSuccess()
449 Os.sendto(socket, packet, 0, packet.length, 0, null); in expectBindConnectSendtoSuccess()
489 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectBindConnectSendtoErrno()
566 Os.sendto(s, msg, 0, msg.length, 0, myaddr); in testUnknownSocketAddressSubclass()
691 assertEquals(len, Os.sendto(sendFd, msg, 0, len, 0, to)); in checkSendToSocketAddress()
740 assertEquals(len, Os.sendto(fd, packet, 0, len, 0, to, 0)); in checkSocketPing()
[all …]
/libcore/ojluni/src/main/native/
Dlinux_close.cpp156 BLOCKING_IO_RETURN_INT( s, sendto(s, msg, len, flags, to, tolen) ); in NET_SendTo()
DDatagramChannelImpl.c262 n = sendto(fd, buf, len, 0, (struct sockaddr *)&sa, sa_len); in Java_sun_nio_ch_DatagramChannelImpl_send0()
/libcore/ojluni/src/main/java/java/net/
DPlainDatagramSocketImpl.java126 IoBridge.sendto(fd, p.getData(), p.getOffset(), p.getLength(), 0, address, port); in send()
DPlainSocketImpl.java307 Libcore.os.sendto(fd, buffer, 0, 1, MSG_OOB, null, 0); in socketSendUrgentData()
DInet6AddressImpl.java267 IoBridge.sendto(fd, packet, 0, packet.length, 0, addr, 0); in icmpEcho()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp2203 return NET_IPV4_FALLBACK(env, ssize_t, sendto, javaFd, javaInetAddress, port, in Linux_sendtoBytes()
2239 …return NET_FAILURE_RETRY(env, ssize_t, sendto, javaFd, bytes.get() + byteOffset, byteCount, flags,… in Linux_sendtoBytesSocketAddress()
/libcore/mmodules/core_platform_api/api/legacy_platform/
Dcurrent-api.txt950 …method public static int sendto(java.io.FileDescriptor, byte[], int, int, int, java.net.InetAddres…