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.java356 …@Override public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddre… in sendto() method in BlockGuardOs
358 return super.sendto(fd, buffer, flags, inetAddress, port); in sendto()
361 …@Override public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int fl… in sendto() method in BlockGuardOs
366 return super.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); in sendto()
464 @Override public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, in sendto() method in BlockGuardOs
467 return super.sendto(fd, bytes, byteOffset, byteCount, flags, address); in sendto()
DForwardingOs.java193 …t sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throw… in sendto() method in ForwardingOs
194sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inet… in sendto() method in ForwardingOs
195sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, SocketAddress ad… in sendto() method in ForwardingOs
DOs.java161 …public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int po… in sendto() method
162 …public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetA… in sendto() method
163 …public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, Socke… in sendto() method
DIoBridge.java549 …public static int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags… in sendto() method in IoBridge
556 result = Libcore.os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); in sendto()
563 …public static int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress,… in sendto() method in IoBridge
570 result = Libcore.os.sendto(fd, buffer, flags, inetAddress, port); in sendto()
DLinux.java218 …public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int po… in sendto() method in Linux
231 …public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetA… in sendto() method in Linux
235 …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.java522sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws … in sendto() method in Os
527sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inet… in sendto() method in Os
532sendto(@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.java294 int sent = Os.sendto(clientFd, input, 0, address.getAddress(), address.getPort()); in checkByteBufferPositions_sendto_recvfrom()
300 sent = Os.sendto(clientFd, input, 0, address.getAddress(), address.getPort()); in checkByteBufferPositions_sendto_recvfrom()
358 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectSendtoException()
392 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectBindConnectSendtoSuccess()
408 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectBindConnectSendtoSuccess()
409 Os.sendto(socket, packet, 0, packet.length, 0, null); in expectBindConnectSendtoSuccess()
449 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectBindConnectSendtoErrno()
526 Os.sendto(s, msg, 0, msg.length, 0, myaddr); in testUnknownSocketAddressSubclass()
592 assertEquals(len, Os.sendto(sendFd, msg, 0, len, 0, to)); in checkSendToSocketAddress()
641 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.java125 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.cpp2200 return NET_IPV4_FALLBACK(env, ssize_t, sendto, javaFd, javaInetAddress, port, in Linux_sendtoBytes()
2236 …return NET_FAILURE_RETRY(env, ssize_t, sendto, javaFd, bytes.get() + byteOffset, byteCount, flags,… in Linux_sendtoBytesSocketAddress()
/libcore/mmodules/core_platform_api/api/platform/
Dcurrent-api.txt1113 …method public static int sendto(java.io.FileDescriptor, byte[], int, int, int, java.net.InetAddres…