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.java387 …@Override public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddre… in sendto() method in BlockGuardOs
389 return super.sendto(fd, buffer, flags, inetAddress, port); in sendto()
392 …@Override public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int fl… in sendto() method in BlockGuardOs
397 return super.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); in sendto()
495 @Override public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, in sendto() method in BlockGuardOs
498 return super.sendto(fd, bytes, byteOffset, byteCount, flags, address); in sendto()
DForwardingOs.java719 …t sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throw… in sendto() method in ForwardingOs
724sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inet… in sendto() method in ForwardingOs
729sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, SocketAddress ad… in sendto() method in ForwardingOs
DOs.java575 …public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int po… in sendto() method
580 …public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetA… in sendto() method
585 …public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, Socke… in sendto() method
DIoBridge.java682 …public static int sendto(@NonNull FileDescriptor fd, @NonNull byte[] bytes, int byteOffset, int by… in sendto() method in IoBridge
689 result = Libcore.os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port); in sendto()
697 …public static int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress,… in sendto() method in IoBridge
704 result = Libcore.os.sendto(fd, buffer, flags, inetAddress, port); in sendto()
DLinux.java220 …public int sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int po… in sendto() method in Linux
233 …public int sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetA… in sendto() method in Linux
237 …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.java662sendto(FileDescriptor fd, ByteBuffer buffer, int flags, InetAddress inetAddress, int port) throws … in sendto() method in Os
667sendto(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, int flags, InetAddress inet… in sendto() method in Os
672sendto(@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.java361 int sent = Os.sendto(clientFd, input, 0, address.getAddress(), address.getPort()); in checkByteBufferPositions_sendto_recvfrom()
367 sent = Os.sendto(clientFd, input, 0, address.getAddress(), address.getPort()); in checkByteBufferPositions_sendto_recvfrom()
424 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectSendtoException()
458 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectBindConnectSendtoSuccess()
475 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectBindConnectSendtoSuccess()
476 Os.sendto(socket, packet, 0, packet.length, 0, null); in expectBindConnectSendtoSuccess()
516 Os.sendto(socket, packet, 0, packet.length, 0, addr); in expectBindConnectSendtoErrno()
595 Os.sendto(s, msg, 0, msg.length, 0, myaddr); in testUnknownSocketAddressSubclass()
808 assertEquals(len, Os.sendto(sendFd, msg, 0, len, 0, to));
1111 assertEquals(len, Os.sendto(fd, packet, 0, len, 0, to, 0));
[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.cpp2364 return NET_IPV4_FALLBACK(env, ssize_t, sendto, javaFd, javaInetAddress, port, in Linux_sendtoBytes()
2400 …return NET_FAILURE_RETRY(env, ssize_t, sendto, javaFd, bytes.get() + byteOffset, byteCount, flags,… in Linux_sendtoBytesSocketAddress()
/libcore/api/
Dcurrent.txt94 …method public static int sendto(java.io.FileDescriptor, java.nio.ByteBuffer, int, java.net.InetAdd…
95 …method public static int sendto(java.io.FileDescriptor, byte[], int, int, int, java.net.InetAddres…
96 …method public static int sendto(@NonNull java.io.FileDescriptor, @NonNull byte[], int, int, int, @…