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

123

/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp209 inline int os::send(int fd, char* buf, size_t nBytes, uint flags) { function in class:os
210 RESTARTABLE_RETURN_INT(::send(fd, buf, nBytes, flags));
214 return os::send(fd, buf, nBytes, flags);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DDatagramChannelImpl.java432 public int send(ByteBuffer src, SocketAddress target) method in class:DatagramChannelImpl
473 n = send(fd, src, isa);
490 private int send(FileDescriptor fd, ByteBuffer src, InetSocketAddress target) method in class:DatagramChannelImpl
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSctpChannelImpl.java74 /* IDs of native threads doing send and receivess, for signalling */
922 "Cannot send to another association");
942 public int send(ByteBuffer buffer, MessageInfo messageInfo) method in class:SctpChannelImpl
967 n = send(fdVal, buffer, messageInfo);
979 private int send(int fd, ByteBuffer src, MessageInfo messageInfo) method in class:SctpChannelImpl
H A DSctpMultiChannelImpl.java69 /* IDs of native threads doing send and receives, for signalling */
766 public int send(ByteBuffer buffer, MessageInfo messageInfo) method in class:SctpMultiChannelImpl
791 /* Determine what address or association to send to */
824 n = send(fdVal, buffer, assocId, address, messageInfo);
836 private int send(int fd, method in class:SctpMultiChannelImpl
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DKDC.java1202 q.take().send();
1228 // the response at send time
1252 void send() { method in class:KDC.Job
1261 s2.send(new DatagramPacket(token, token.length, dp.getAddress(), dp.getPort()));
/openjdk7/jdk/src/share/classes/sun/security/ssl/
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...]
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DOldMBeanServerTest.java243 public void send(); method in interface:OldMBeanServerTest.BoringNotifierMBean
266 public void send() { method in class:OldMBeanServerTest.BoringNotifier
319 mbsc.invoke(name, "send", null, null);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp4471 // we send a signal to a thread we want to resume
4479 // mark as suspended and send signal
4490 // managed to send the signal and switch to SUSPEND_REQUEST, now wait for SUSPENDED
6730 int os::send(int fd, char* buf, size_t nBytes, uint flags) { function in class:os
6731 INTERRUPTIBLE_RETURN_INT((int)::send(fd, buf, nBytes, flags), os::Solaris::clear_interrupted);
6735 RESTARTABLE_RETURN_INT((int)::send(fd, buf, nBytes, flags));
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp5004 int os::send(int fd, char* buf, size_t nBytes, uint flags) { function in class:os
5005 return ::send(fd, buf, (int)nBytes, flags);
5009 return ::send(fd, buf, (int)nBytes, flags);

Completed in 114 milliseconds

123