Home
last modified time | relevance | path

Searched defs:receive (Results 1 – 13 of 13) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
DPipedReader.java174 synchronized void receive(int c) throws IOException { in receive() method in PipedReader
215 synchronized void receive(char c[], int off, int len) throws IOException { in receive() method in PipedReader
DPipedInputStream.java207 protected synchronized void receive(int b) throws IOException { in receive() method in PipedInputStream
232 synchronized void receive(byte b[], int off, int len) throws IOException { in receive() method in PipedInputStream
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DDatagramSocketTest.java153 DatagramPacket receive = new DatagramPacket(new byte[20], 20); in testConnect_connectToSelf() local
189 final DatagramPacket receive = new DatagramPacket(new byte[20], 20); in testConnect_echoServer() local
238 final DatagramPacket receive = new DatagramPacket(new byte[20], 20); in testConnect_connectDisconnectConnectThenSendRecv() local
265 final DatagramPacket receive = new DatagramPacket(new byte[20], 20); in testConnect_connectDisconnectThenSendRecv() local
293 final DatagramPacket receive = new DatagramPacket(new byte[20], 20); in testConnect_connectTwice() local
429 protected void receive(DatagramPacket arg0) throws IOException { in receive() method in DatagramSocketTest.TestDatagramSocketImpl
939 DatagramPacket receive = new DatagramPacket(recvBuffer, recvBuffer.length); in testReceiveOversizePacket() local
DDatagramSocketImplTest.java121 protected void receive(DatagramPacket pack) throws IOException { in receive() method in MockDatagramSocketImpl
/libcore/ojluni/src/main/java/sun/nio/ch/
DDatagramSocketAdaptor.java174 private SocketAddress receive(ByteBuffer bb) throws IOException { in receive() method in DatagramSocketAdaptor
216 public void receive(DatagramPacket p) throws IOException { in receive() method in DatagramSocketAdaptor
DDatagramChannelImpl.java334 public SocketAddress receive(ByteBuffer dst) throws IOException { in receive() method in DatagramChannelImpl
397 private int receive(FileDescriptor fd, ByteBuffer dst) in receive() method in DatagramChannelImpl
/libcore/ojluni/src/main/java/java/net/
DDatagramSocketImpl.java138 protected abstract void receive(DatagramPacket p) throws IOException; in receive() method in DatagramSocketImpl
DAbstractPlainDatagramSocketImpl.java145 protected synchronized void receive(DatagramPacket p) in receive() method in AbstractPlainDatagramSocketImpl
DDatagramSocket.java729 public synchronized void receive(DatagramPacket p) throws IOException { in receive() method in DatagramSocket
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DMockDatagramChannel.java59 public SocketAddress receive(ByteBuffer arg0) throws IOException { in receive() method in MockDatagramChannel
/libcore/ojluni/src/main/java/java/nio/channels/
DDatagramChannel.java395 public abstract SocketAddress receive(ByteBuffer dst) throws IOException; in receive() method in DatagramChannel
/libcore/luni/src/test/java/libcore/java/net/
DOldDatagramSocketImplFactoryTest.java183 protected void receive(DatagramPacket arg0) throws IOException { in receive() method in OldDatagramSocketImplFactoryTest.TestDatagramSocketImpl
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DPipedInputStreamTest.java311 public void receive(int oneByte) throws IOException { in receive() method in PipedInputStreamTest.PipedInputStreamWithPublicReceive