Searched refs:send (Results 151 - 175 of 216) sorted by relevance

123456789

/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DDatagramSocketImpl.java88 * destination address to send the packet to.
96 protected abstract void send(DatagramPacket p) throws IOException; method in class:DatagramSocketImpl
107 * send or receive may throw a PortUnreachableException.
H A DDatagramSocket.java420 * send or receive may throw a PortUnreachableException. Note, there is no
437 * {@link #send send} <b>will not perform any security checks</b>
439 * and the socket's address and port. On a send operation, if the
443 * to send packets.
640 * method doesn't allow the send.
656 public void send(DatagramPacket p) throws IOException { method in class:DatagramSocket
661 checkAddress (p.getAddress(), "send");
663 // check the address is ok wiht the security manager on every send.
668 // while you are trying to send th
[all...]
H A DAbstractPlainDatagramSocketImpl.java138 * destination address to send the packet to.
141 protected abstract void send(DatagramPacket p) throws IOException; method in class:AbstractPlainDatagramSocketImpl
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DVMState.java117 PacketStream stream = sender.send();
H A DClassTypeImpl.java182 public PacketStream send() {
/openjdk10/jdk/test/java/net/httpclient/
H A DTimeoutOrdering.java118 client.send(req, discard(null));
H A DSmallTimeout.java122 client.send(req, discard(null));
H A DHeadersTest1.java85 HttpResponse<?> resp = client.send(req, asString());
H A DVersionTest.java88 HttpResponse<Void> resp = client.send(r, discard(null));
H A DShortRequestBody.java198 HttpResponse<Void> r = defaultClient().send(request, discard(null));
/openjdk10/jdk/test/java/net/SocketOption/
H A DImmutableOptions.java152 protected void send(DatagramPacket p) throws IOException { } method in class:ImmutableOptions.CustomDatagramSocketImpl
/openjdk10/jdk/test/java/net/httpclient/http2/
H A DTimeout.java124 HttpResponse<String> response = client.send(request, asString());
/openjdk10/jdk/test/com/sun/nio/sctp/SctpMultiChannel/
H A DBranch.java109 int sent = channel.send(buffer, info);
213 int bytes = serverChannel.send(buffer, info);
/openjdk10/jdk/test/javax/net/ssl/DTLS/
H A DDTLSOverDatagram.java183 socket.send(p);
244 socket.send(p);
302 socket.send(p);
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/
H A DWebSocketImpl.java125 return h.send().thenApply(newWebSocket);
307 * completes. This method is used to enforce "one outstanding send
316 return failedFuture(new IllegalStateException("Outstanding send"));
355 transmitter.send(message, h);
428 // is to rule out a possibility the shared data we send might be
434 // Non-exclusive send;
/openjdk10/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DReceive.java244 /* send a small message */
252 sc.send(buf, info);
254 /* send a large message */
260 sc.send(buf, info);
/openjdk10/jdk/test/javax/sound/midi/Devices/
H A DIOLoop.java228 receiver.send(message, -1);
368 public void send(MidiMessage message, long timestamp) { method in class:IOLoop.TestReceiver
/openjdk10/hotspot/src/share/vm/gc/shared/
H A DgcTrace.cpp87 ObjectCountEventSender::send(entry, _timestamp);
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DRSAClientKeyExchange.java250 void send(HandshakeOutStream s) throws IOException { method in class:RSAClientKeyExchange
H A DOCSPStatusRequest.java244 * @param s the {@code HandshakeOutputStream} on which to send the encoded
250 public void send(HandshakeOutStream s) throws IOException { method in class:OCSPStatusRequest
/openjdk10/jdk/src/java.base/windows/native/libnio/ch/
H A DWindowsSelectorImpl.c203 send(scoutFd, &byte, 1, 0);
/openjdk10/jdk/src/java.base/windows/classes/java/net/
H A DDualStackPlainDatagramSocketImpl.java127 protected void send(DatagramPacket p) throws IOException { method in class:DualStackPlainDatagramSocketImpl
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/server/provider/
H A DAsyncProviderInvokerTube.java134 public void send(@Nullable T param) { method in class:AsyncProviderInvokerTube.AsyncProviderCallbackImpl
/openjdk10/jdk/src/jdk.jdwp.agent/unix/native/libdt_socket/
H A Dsocket_md.c123 rv = send(fd, buf, nBytes, flags);
/openjdk10/jdk/test/java/net/MulticastSocket/
H A DSetOutgoingIf.java107 // We will send packets to one ipv4, and one ipv6
131 // use a separated thread to send to those 2 groups
222 mcastsock.send(packet);

Completed in 224 milliseconds

123456789