Searched defs:send (Results 26 - 50 of 59) sorted by relevance

123

/openjdk7/jdk/src/share/classes/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
/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/
H A DSctpChannel.java108 * <td> The size of the socket send buffer </td>
132 * an attempt to initiate a send or receive operation while an invocation of one
182 * to send to. Must be non negative and no larger than {@code 65536}.
298 * send the appropriate message to the peer to change the peers address
346 * then it may send the appropriate message to the peer to change the peers
397 * <p> This method may be invoked at any time. If a {@link #send send} or
458 * able to send to and receive from. They are negotiated with the remote
542 * <P> This method may be invoked at any time. If a {@link #send send} o
857 public abstract int send(ByteBuffer src, MessageInfo messageInfo) method in class:SctpChannel
[all...]
H A DSctpMultiChannel.java46 * to be thrown. An attempt to invoke the {@link #send send} method of an
112 * <td> The size of the socket send buffer </td>
300 * dynamic address reconfiguration then it may send the appropriate message
348 * dynamic address reconfiguration then it may send the appropriate message
661 * initiated a send operation upon this channel, then an invocation of
701 public abstract int send(ByteBuffer buffer, MessageInfo messageInfo) method in class:SctpMultiChannel
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DTargetVM.java279 void send(Packet packet) { method in class:TargetVM
H A DPacketStream.java56 void send() { method in class:PacketStream
66 throw new InternalException("waitForReply without send");
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSctpChannelImpl.java136 public int send(ByteBuffer src, MessageInfo messageInfo) method in class:SctpChannelImpl
H A DSctpMultiChannelImpl.java117 public int send(ByteBuffer buffer, MessageInfo messageInfo) method in class:SctpMultiChannelImpl
/openjdk7/jdk/src/windows/native/java/io/
H A Dcanonicalize_md.c51 before copying bytes from src to send - 1. */
54 cp(char *dst, char *dend, char first, char *src, char *send) argument
65 if (send - p > dend - q) {
69 while (p < send) {
78 wcp(WCHAR *dst, WCHAR *dend, WCHAR first, WCHAR *src, WCHAR *send) argument
89 if (send - p > dend - q) {
93 while (p < send)
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbAsReqBuilder.java45 * 2. Create and send AS-REQ
312 private KrbAsReqBuilder send() throws KrbException, IOException { method in class:KrbAsReqBuilder
319 rep = new KrbAsRep(comm.send(req.encoding()));
327 "PREAUTH FAILED/REQ, re-send AS-REQ");
354 * Performs AS-REQ send and AS-REP receive.
364 return send().resolve();
H A DKrbTgsReq.java182 public void send() throws IOException, KrbException { method in class:KrbTgsReq
187 ibuf = comm.send(obuf);
202 send();
H A DKdcComm.java183 public byte[] send(byte[] obuf) method in class:KdcComm
191 return send(obuf, useTCP);
194 private byte[] send(byte[] obuf, boolean useTCP) method in class:KdcComm
219 ibuf = send(obuf,tempKdc,useTCP);
228 ibuf = send(obuf, tempKdc, true);
234 System.out.println(">>> KrbKdcReq send: error trying " +
252 // send the AS Request to the specified KDC
254 private byte[] send(byte[] obuf, String tempKdc, boolean useTCP) method in class:KdcComm
311 System.out.println(">>> KrbKdcReq send: kdc=" + kdc
325 System.out.println(">>> KrbKdcReq send
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DNetClient.java47 abstract public void send(byte[] data) throws IOException; method in class:NetClient
70 public void send(byte[] data) throws IOException { method in class:TCPClient
196 public void send(byte[] data) throws IOException { method in class:UDPClient
199 dgSocket.send(dgPacketOut);
/openjdk7/jdk/src/share/classes/sun/security/ssl/krb5/
H A DKerberosClientKeyExchangeImpl.java257 public void send(HandshakeOutStream s) throws IOException { method in class:KerberosClientKeyExchangeImpl
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotificationBufferDeadlockTest.java174 mbsc.invoke(name, "send", null, null);
186 public void send(); method in interface:NotificationBufferDeadlockTest.DeadlockTestMBean
214 public void send() { method in class:NotificationBufferDeadlockTest.DeadlockTest
/openjdk7/jdk/src/solaris/classes/java/net/
H A DPlainDatagramSocketImpl.java44 protected native void send(DatagramPacket p) throws IOException; method in class:PlainDatagramSocketImpl
/openjdk7/jdk/src/share/classes/java/net/
H A DAbstractPlainDatagramSocketImpl.java103 * destination address to send the packet to.
106 protected abstract void send(DatagramPacket p) throws IOException; method in class:AbstractPlainDatagramSocketImpl
H A DDatagramSocket.java402 * send or receive may throw a PortUnreachableException. Note, there is no
419 * {@link #send send} <b>will not perform any security checks</b>
421 * and the socket's address and port. On a send operation, if the
425 * to send packets.
621 * method doesn't allow the send.
637 public void send(DatagramPacket p) throws IOException { method in class:DatagramSocket
642 checkAddress (p.getAddress(), "send");
644 // check the address is ok wiht the security manager on every send.
649 // while you are trying to send th
[all...]
/openjdk7/jdk/src/windows/classes/java/net/
H A DDualStackPlainDatagramSocketImpl.java124 protected void send(DatagramPacket p) throws IOException { method in class:DualStackPlainDatagramSocketImpl
H A DTwoStacksPlainDatagramSocketImpl.java169 protected native void send(DatagramPacket p) throws IOException; method in class:TwoStacksPlainDatagramSocketImpl
/openjdk7/jdk/test/java/net/Socket/
H A DSocketImplTest.java100 protected void send(DatagramPacket p) throws IOException { method in class:SocketImplTest.MyDatagramSocketImpl
/openjdk7/jdk/test/java/nio/channels/
H A DTestServers.java594 final synchronized boolean send(DatagramSocket socket, method in class:TestServers.AbstractUdpServer
597 socket.send(response);
772 send(socket, response);
774 System.err.println("Failed to send response: " + io);
830 send(socket, response);
832 System.err.println("Failed to send response: " + io);
/openjdk7/jdk/src/share/classes/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");
385 protected void send(DatagramPacket p) throws IOException {}
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractMidiDevice.java489 public final synchronized void send(final MidiMessage message, method in class:AbstractMidiDevice.AbstractReceiver
676 receiver.send(new FastShortMessage(packedMessage), timeStamp);
679 receiver.send(new FastShortMessage(packedMessage), timeStamp);
703 receiver.send(new FastSysexMessage(data), timeStamp);
727 midiOutReceiver.send(message, timeStamp);
741 receiver.send(message, timeStamp);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
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...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp205 inline int os::send(int fd, char* buf, size_t nBytes, uint flags) { function in class:os
206 RESTARTABLE_RETURN_INT(::send(fd, buf, nBytes, flags));
210 return os::send(fd, buf, nBytes, flags);

Completed in 81 milliseconds

123