Searched defs:send (Results 1 - 20 of 20) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/ssl/
H A DDHClientKeyExchange.java35 * Message used by clients to send their Diffie-Hellman public
93 void send(HandshakeOutStream s) throws IOException { method in class:DHClientKeyExchange
H A DECDHClientKeyExchange.java70 void send(HandshakeOutStream s) throws IOException { method in class:ECDHClientKeyExchange
H A DRandomCookie.java66 void send(HandshakeOutStream out) throws IOException { method in class:RandomCookie
H A DCipherSuiteList.java187 void send(HandshakeOutStream s) throws IOException { method in class:CipherSuiteList
H A DKerberosClientKeyExchange.java108 public void send(HandshakeOutStream s) throws IOException { method in class:KerberosClientKeyExchange
109 impl.send(s);
H A DRSAClientKeyExchange.java57 * implementations) used to send the active negotiated version. The
291 void send(HandshakeOutStream s) throws IOException { method in class:RSAClientKeyExchange
H A DHelloExtensions.java140 void send(HandshakeOutStream s) throws IOException { method in class:HelloExtensions
147 ext.send(s);
241 abstract void send(HandshakeOutStream s) throws IOException; method in class:HelloExtension
265 void send(HandshakeOutStream s) throws IOException { method in class:UnknownExtension
410 void send(HandshakeOutStream s) throws IOException { method in class:ServerNameExtension
435 // the extension value to send in the ClientHello message
499 void send(HandshakeOutStream s) throws IOException { method in class:SupportedEllipticCurvesExtension
655 void send(HandshakeOutStream s) throws IOException { method in class:SupportedEllipticPointFormatsExtension
744 void send(HandshakeOutStream s) throws IOException { method in class:RenegotiationInfoExtension
840 void send(HandshakeOutStrea method in class:SignatureAlgorithmsExtension
[all...]
H A DHandshakeMessage.java66 * server sides, although they don't send and receive the same messages.
143 send(s);
152 abstract void send(HandshakeOutStream s) throws IOException; method in class:HandshakeMessage
186 void send(HandshakeOutStream out) throws IOException method in class:HandshakeMessage.HelloRequest
298 void send(HandshakeOutStream s) throws IOException { method in class:HandshakeMessage.ClientHello
301 clnt_random.send(s);
303 cipherSuites.send(s);
305 extensions.send(s);
375 void send(HandshakeOutStream s) throws IOException method in class:HandshakeMessage.ServerHello
379 svr_random.send(
477 void send(HandshakeOutStream s) throws IOException { method in class:HandshakeMessage.CertificateMsg
649 void send(HandshakeOutStream s) throws IOException { method in class:HandshakeMessage.RSA_ServerKeyExchange
911 void send(HandshakeOutStream s) throws IOException { method in class:HandshakeMessage.DH_ServerKeyExchange
1145 void send(HandshakeOutStream s) throws IOException { method in class:HandshakeMessage.ECDH_ServerKeyExchange
1207 void send(HandshakeOutStream output) throws IOException { method in class:HandshakeMessage.DistinguishedName
1396 void send(HandshakeOutStream output) throws IOException { method in class:HandshakeMessage.CertificateRequest
1508 void send(HandshakeOutStream s) throws IOException method in class:HandshakeMessage.ServerHelloDone
1791 void send(HandshakeOutStream s) throws IOException { method in class:HandshakeMessage.CertificateVerify
2000 void send(HandshakeOutStream out) throws IOException { method in class:HandshakeMessage.Finished
[all...]
/libcore/ojluni/src/main/java/java/net/
H A DMulticastSocket.java48 * // join a Multicast group and send the group salutations
56 * s.send(hi);
69 * be a member of the multicast group to send messages to it.
178 * send(packet,ttl).
630 * One does not need to be the member of the group to send
639 * method doesn't allow the send.
645 * mcastSocket.send(p);
649 * @see DatagramSocket#send
655 public void send(DatagramPacket p, byte ttl) method in class:MulticastSocket
659 checkAddress(p.getAddress(), "send");
[all...]
H A DDatagramSocketImpl.java68 * destination address to send the packet to.
76 protected abstract void send(DatagramPacket p) throws IOException; method in class:DatagramSocketImpl
87 * send or receive may throw a PortUnreachableException.
H A DPlainDatagramSocketImpl.java44 protected native void send(DatagramPacket p) throws IOException; method in class:PlainDatagramSocketImpl
H A DAbstractPlainDatagramSocketImpl.java104 * destination address to send the packet to.
107 protected abstract void send(DatagramPacket p) throws IOException; method in class:AbstractPlainDatagramSocketImpl
H A DDatagramSocket.java416 * send or receive may throw a PortUnreachableException. Note, there is no
433 * {@link #send send} <b>will not perform any security checks</b>
435 * and the socket's address and port. On a send operation, if the
439 * to send packets.
639 * method doesn't allow the send.
655 public void send(DatagramPacket p) throws IOException { method in class:DatagramSocket
660 checkAddress (p.getAddress(), "send");
662 // check the address is ok wiht the security manager on every send.
667 // while you are trying to send th
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DDatagramSocketImplTest.java126 protected void send(DatagramPacket pack) throws IOException { method in class:MockDatagramSocketImpl
H A DDatagramSocketTest.java66 serverSocket.send(rdp);
121 ds.send(dp);
149 DatagramPacket send = new DatagramPacket(new byte[10], 10, localHost,
151 ds.send(send);
188 final DatagramPacket send = new DatagramPacket(sendBytes, sendBytes.length);
191 ds.send(send);
197 assertPacketDataEquals(send, receive);
203 // Validate that once connected we cannot send t
415 protected void send(DatagramPacket arg0) throws IOException { method in class:DatagramSocketTest.TestDatagramSocketImpl
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DMockDatagramChannel.java64 public int send(ByteBuffer arg0, SocketAddress arg1) throws IOException { method in class:MockDatagramChannel
/libcore/luni/src/test/java/libcore/java/net/
H A DOldDatagramSocketImplFactoryTest.java187 protected void send(DatagramPacket arg0) throws IOException { method in class:OldDatagramSocketImplFactoryTest.TestDatagramSocketImpl
/libcore/ojluni/src/main/java/java/nio/channels/
H A DDatagramChannel.java43 * connected. A datagram channel need not be connected in order for the {@link #send
44 * send} and {@link #receive receive} methods to be used. A datagram channel may be
47 * every send and receive operation. A datagram channel must be connected in
67 * <td> The size of the socket send buffer </td>
410 * java.net.DatagramSocket#send send} method of the {@link
460 public abstract int send(ByteBuffer src, SocketAddress target) method in class:DatagramChannel
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DDatagramSocketAdaptor.java139 public void send(DatagramPacket p) throws IOException { method in class:DatagramSocketAdaptor
150 // Legacy DatagramSocket will send in this case
159 dc.send(bb, p.getSocketAddress());
163 dc.send(bb, p.getSocketAddress());
314 throw new IllegalArgumentException("Invalid send size");
391 protected void send(DatagramPacket p) throws IOException {}
H A DDatagramChannelImpl.java436 public int send(ByteBuffer src, SocketAddress target) method in class:DatagramChannelImpl
479 n = send(fd, src, isa);
496 private int send(FileDescriptor fd, ByteBuffer src, InetSocketAddress target) method in class:DatagramChannelImpl

Completed in 481 milliseconds