HomeSort by relevance Sort by last modified time
    Searched defs:receive (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
IncomingStreamHandler.java 24 @Override public void receive(SpdyStream stream) throws IOException {
35 void receive(SpdyStream stream) throws IOException; method in interface:IncomingStreamHandler
Ping.java 37 void receive() { method in class:Ping
  /libcore/luni/src/main/java/java/nio/channels/
DatagramChannel.java 36 * is the reduced effort of security checks during send and receive. When
132 * in order to send and receive datagrams.
158 * This method executes the same security checks as the receive method of
178 public abstract SocketAddress receive(ByteBuffer target) throws IOException; method in class:DatagramChannel
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
MockDatagramChannel.java 49 public SocketAddress receive(ByteBuffer arg0) throws IOException { method in class:MockDatagramChannel
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
msgutil.py 52 # An API for handler to send/receive WebSocket messages.
79 """Receive a WebSocket frame and return its payload as a text in
105 This class provides three ways to receive messages: blocking,
120 another thread. In that case, MessageReceiver.receive
144 def receive(self): member in class:MessageReceiver
145 """ Receive a message from the channel, blocking.
153 """ Receive a message from the channel, non-blocking.
  /libcore/luni/src/main/java/java/io/
PipedWriter.java 159 reader.receive(buffer, offset, count);
188 reader.receive((char) c);
PipedReader.java 246 * of "Pipe broken" will be thrown in receive()
260 // Notify callers of receive()
334 * If the buffer is full and the thread sending #receive is interrupted, the
344 synchronized void receive(char oneChar) throws IOException { method in class:PipedReader
384 * If the buffer is full and the thread sending #receive is interrupted, the
391 synchronized void receive(char[] chars, int offset, int count) throws IOException { method in class:PipedReader
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeLlcpConnectionlessSocket.java 60 public LlcpPacket receive() throws IOException { method in class:NativeLlcpConnectionlessSocket
NativeLlcpSocket.java 69 public int receive(byte[] recvBuff) throws IOException { method in class:NativeLlcpSocket
NativeP2pDevice.java 34 public byte[] receive() { method in class:NativeP2pDevice
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeLlcpConnectionlessSocket.java 60 public LlcpPacket receive() throws IOException { method in class:NativeLlcpConnectionlessSocket
NativeLlcpSocket.java 69 public int receive(byte[] recvBuff) throws IOException { method in class:NativeLlcpSocket
NativeP2pDevice.java 34 public byte[] receive() { method in class:NativeP2pDevice
  /external/arduino/libraries/Wire/
Wire.cpp 191 uint8_t TwoWire::receive(void) function in class:TwoWire
  /external/chromium/crypto/
scoped_capi_types.h 67 CAPIHandle* receive() { function in class:crypto::ScopedCAPIHandle
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_transport.cpp 122 int TCPStream::receive(void *data, size_t len) { function in class:android::gltrace::TCPStream
  /libcore/luni/src/main/java/java/net/
DatagramSocketImpl.java 48 * bound prior to attempting to send or receive data.
125 * a group before being able to receive data. Further, a socket may be a
138 * a group before being able to receive data. Further, a socket may be a
144 * the local network interface which will receive the multicast
202 protected abstract void receive(DatagramPacket pack) throws IOException; method in class:DatagramSocketImpl
268 * {@code peekData()} or {@code receive()} call. This call blocks until
  /packages/apps/Nfc/tests/src/com/android/nfc/
MockLlcpSocket.java 55 public int receive(byte[] receiveBuffer) throws IOException { method in class:MockLlcpSocket
  /external/chromium/net/http/
http_auth_gssapi_posix.h 205 gss_ctx_id_t* receive() { return &security_context_; } function in class:net::ScopedSecurityContext
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Socket.java 127 * @param socket Socket from where to receive data.
129 * @param len Number of bytes to receive.
132 public static void receive(LocalSocket socket, byte[] data, int len) throws IOException { method in class:Socket
149 * @param len Number of bytes to receive.
152 public void receive(byte[] data, int len) throws IOException { method in class:Socket
155 Logw("'receive' request on closed Socket " + mChannelName);
158 receive(socket, data, len); method
168 public void receive(byte[] data) throws IOException { method in class:Socket
169 receive(data, data.length); method
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DatagramSocketImplTest.java 121 protected void receive(DatagramPacket pack) throws IOException { method in class:MockDatagramSocketImpl
  /external/libnfc-nxp/src/
phFriNfc_LlcpMac.h 70 * - Receive packets through the LLCP link
158 pphFriNfcLlpcMac_Receive_t receive; member in struct:phFriNfc_LlcpMac_Interface
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/mockspdyserver/
MockSpdyServer.java 190 @Override public void receive(final SpdyStream stream) throws IOException { method in class:MockSpdyServer.SocketHandler
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
SpdyServer.java 82 @Override public void receive(final SpdyStream stream) throws IOException { method in class:SpdyServer
  /external/qemu/
net.h 16 NetReceive *receive; member in struct:VLANClientState
58 NetReceive *receive,
142 NetReceive *receive,

Completed in 2058 milliseconds

1 2 3