/openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
H A D | objectCountEventSender.cpp | 32 void ObjectCountEventSender::send(const KlassInfoEntry* entry, GCId gc_id, jlong timestamp) { function in class:ObjectCountEventSender
|
/openjdk7/jdk/src/share/sample/nio/server/ |
H A D | Sendable.java | 58 boolean send(ChannelIO cio) throws IOException; method in interface:Sendable
|
H A D | FileContent.java | 95 public boolean send(ChannelIO cio) throws IOException { method in class:FileContent
|
H A D | RequestHandler.java | 47 * prepare, send, and shutdown requests. 142 if (send()) { 153 if (!send()) { // Should be rp.send() 170 * before closing down and send off a close_notify, 187 private boolean send() throws IOException { method in class:RequestHandler 189 return reply.send(cio);
|
H A D | StringContent.java | 97 public boolean send(ChannelIO cio) throws IOException { method in class:StringContent
|
H A D | Reply.java | 115 public boolean send(ChannelIO cio) throws IOException { method in class:Reply 126 if (content.send(cio))
|
/openjdk7/jdk/src/share/classes/com/sun/pept/ |
H A D | Delegate.java | 65 public void send(MessageStruct message); method in interface:Delegate
|
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/ |
H A D | CommandSender.java | 32 PacketStream send(); method in interface:CommandSender
|
/openjdk7/jdk/src/share/classes/javax/sound/midi/ |
H A D | Receiver.java | 49 * @param message the MIDI message to send 53 public void send(MidiMessage message, long timeStamp); method in interface:Receiver
|
/openjdk7/jdk/src/share/classes/com/sun/pept/protocol/ |
H A D | MessageDispatcher.java | 60 public void send(MessageInfo messageInfo); method in interface:MessageDispatcher
|
/openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
H A D | MidiDeviceReceiverEnvelope.java | 62 public void send(MidiMessage message, long timeStamp) { method in class:MidiDeviceReceiverEnvelope 63 receiver.send(message, timeStamp);
|
H A D | SoftReceiver.java | 59 public void send(MidiMessage message, long timeStamp) { method in class:SoftReceiver
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/ |
H A D | AsyncProviderCallback.java | 40 * send out an actual response at some later point. 55 void send(@Nullable T response); method in interface:AsyncProviderCallback 62 * a SOAP-based web service, the server will send back a SOAP fault.
|
/openjdk7/jdk/src/share/classes/sun/security/ssl/ |
H A D | DHClientKeyExchange.java | 35 * Message used by clients to send their Diffie-Hellman public 93 void send(HandshakeOutStream s) throws IOException { method in class:DHClientKeyExchange
|
H A D | ECDHClientKeyExchange.java | 70 void send(HandshakeOutStream s) throws IOException { method in class:ECDHClientKeyExchange
|
H A D | RandomCookie.java | 66 void send(HandshakeOutStream out) throws IOException { method in class:RandomCookie
|
H A D | CipherSuiteList.java | 187 void send(HandshakeOutStream s) throws IOException { method in class:CipherSuiteList
|
H A D | KerberosClientKeyExchange.java | 108 public void send(HandshakeOutStream s) throws IOException { method in class:KerberosClientKeyExchange 109 impl.send(s);
|
H A D | RSAClientKeyExchange.java | 57 * implementations) used to send the active negotiated version. The 291 void send(HandshakeOutStream s) throws IOException { method in class:RSAClientKeyExchange
|
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSynthesizer/ |
H A D | TestRender1.java | 46 public static double send(Sequence seq, Receiver recv) { method in class:TestRender1 89 recv.send(msg, curtime); 122 send(sequence, recv);
|
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | MulticastSocket.java | 48 * // 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 D | DatagramSocketImpl.java | 68 * 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.
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/ |
H A D | AsyncProviderInvokerTube.java | 89 public void send(@Nullable T param) { method in class:AsyncProviderInvokerTube.AsyncProviderCallbackImpl
|
/openjdk7/jdk/test/javax/management/remote/mandatory/loading/ |
H A D | RMIDownloadTest.java | 30 * @run main RMIDownloadTest send without 32 * @run main RMIDownloadTest send with 46 * We run the test four times, for each combination of (send, receive) x 120 Arrays.asList("send", "receive").indexOf(args[0]); 125 throw new Exception("Usage: RMIDownloadTest (send|receive) (with|without)"); 126 final boolean send = (sendIndex == 0); 155 if (send) 156 System.out.println("Testing we can send an object from client to server"); 167 test(send, true); 173 test(send, fals 178 test(boolean send, boolean shouldWork) argument 191 testWithException(boolean send) argument [all...] |
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/ |
H A D | ListenerScaleTest.java | 40 * to send and receive a certain number of notifications from that 102 mbs.invoke(testObjectName, "send", null, null); 111 public void send(); method in interface:ListenerScaleTest.SenderMBean 116 public void send() { method in class:ListenerScaleTest.Sender 175 System.out.println("Timing a notification send now");
|