Searched refs:receive (Results 1 - 25 of 104) sorted by relevance

12345

/openjdk7/jdk/test/java/rmi/server/RMIClassLoader/downloadArrayClass/
H A DReceiver.java30 public void receive(Object obj) throws RemoteException; method in interface:Receiver
H A DDownloadArrayClass.java51 public void receive(Object obj) { method in class:DownloadArrayClass
52 System.err.println("+ receive(): received object " + obj);
108 stub.receive(arg);
116 stub.receive(arg);
124 stub.receive(arg);
/openjdk7/jdk/test/java/rmi/server/RMIClassLoader/useCodebaseOnly/
H A DReceiver.java30 public void receive(Object obj) throws RemoteException; method in interface:Receiver
H A DUseCodebaseOnly.java50 public void receive(Object obj) { method in class:UseCodebaseOnly
51 System.err.println("+ receive(): received object " + obj);
109 stub.receive(barObj);
121 stub.receive(fooObj);
/openjdk7/jdk/test/sun/rmi/server/MarshalOutputStream/marshalForeignStub/
H A DReceiver.java30 public void receive(Object obj) throws RemoteException; method in interface:Receiver
H A DMarshalForeignStub.java53 public void receive(Object obj) { method in class:MarshalForeignStub
54 System.err.println("+ receive(): received object " + obj);
82 stub.receive(new ForeignStub());
/openjdk7/jdk/src/share/classes/com/sun/pept/protocol/
H A DMessageDispatcher.java71 public void receive(MessageInfo messageInfo); method in interface:MessageDispatcher
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DReceiver.java44 void receive(UnmarshallingContext.State state, Object o) throws SAXException; method in interface:Receiver
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DReceive.java26 * @summary Test DatagramChannel's receive after close
39 dc1.receive(bb);
H A DNoSender.java26 * @summary Test nonblocking receive with no sender
39 SocketAddress sa1 = dc.receive(buf1);
H A DRefused.java25 * @summary Test DatagramChannel's receive when port unreachable
76 server.receive(inBuf);
82 server.receive(inBuf);
96 server.receive(inBuf);
H A DThereCanBeOnlyOne.java75 * The next send or receive should cause a PUE to be thrown
87 dc1.receive(bb);
95 * The next receive should not get another PUE
99 dc1.receive(bb);
/openjdk7/jdk/test/java/net/DatagramSocket/
H A DDatagramTimeout.java44 sock.receive(p);
H A DReportSocketClosed.java48 soc.receive(new DatagramPacket(array, array.length));
H A DSendDatagramToBadAddress.java78 public void receive (int loop, boolean expectError) throws Exception { method in class:SendDatagramToBadAddress.Server
81 server.receive (pack);
145 s.receive (loop, false);
154 s.receive (1, false);
156 // check send() to invalid destination followed by a blocking receive
177 sock.receive (p);
H A DSend12k.java70 s2.receive(p1);
/openjdk7/jdk/test/java/rmi/server/UnicastRemoteObject/changeHostName/
H A DChangeHostName.java51 public void receive(Remote obj) { method in class:ChangeHostName
71 stub.receive(stub);
90 void receive(Remote obj) throws RemoteException; method in interface:Receiver
/openjdk7/jdk/test/java/rmi/server/UnicastRemoteObject/marshalAfterUnexport/
H A DMarshalAfterUnexport.java51 public void receive(Remote obj) { method in class:MarshalAfterUnexport
73 stub2.receive(stub);
88 void receive(Remote obj) throws RemoteException; method in interface:Receiver
H A DMarshalAfterUnexport2.java54 public void receive(Remote obj) { method in class:MarshalAfterUnexport2
81 stub2.receive(stub);
96 void receive(Remote obj) throws RemoteException; method in interface:Receiver
/openjdk7/jdk/src/share/classes/java/io/
H A DPipedOutputStream.java122 sink.receive(b);
149 sink.receive(b, off, len);
H A DPipedWriter.java124 sink.receive(c);
150 sink.receive(cbuf, off, len);
H A DPipedReader.java169 synchronized void receive(int c) throws IOException { method in class:PipedReader
205 synchronized void receive(char c[], int off, int len) throws IOException { method in class:PipedReader
207 receive(c[off++]);
/openjdk7/jdk/test/java/net/DatagramSocket/SetDatagramSocketImplFactory/
H A DADatagramSocket.java57 socket.receive(packet);
84 // receive request
86 socket.receive(packet);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DNetClient.java49 abstract public byte[] receive() throws IOException; method in class:NetClient
80 public byte[] receive() throws IOException { method in class:TCPClient
203 public byte[] receive() throws IOException { method in class:UDPClient
207 dgSocket.receive(dgPacketIn);
210 dgSocket.receive(dgPacketIn);
/openjdk7/jdk/test/java/net/MulticastSocket/
H A DTest.java72 mc.receive(p);
89 mc.receive(p);
101 mc.receive(p);

Completed in 1708 milliseconds

12345