HomeSort by relevance Sort by last modified time
    Searched refs:receive (Results 76 - 100 of 217) sorted by null

1 2 34 5 6 7 8 9

  /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
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverClient.java 127 int size = sock.receive(partial);
HandoverServer.java 181 int size = mSock.receive(partial);
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.ecf.filetransfer_5.0.0.v20130604-1622.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.ecf.filetransfer_5.0.0.v20130604-1622.jar 
  /external/sepolicy/
access_vectors 354 receive
488 receive
602 receive
608 receive
  /packages/apps/Nfc/src/com/android/nfc/echoserver/
EchoServer.java 39 * 1) A connection-based server, which has a receive buffer of two
41 * After these 2 seconds, all packets that are in the receive buffer
44 * 2) A connection-less mode, which has a receive buffer of two packets.
45 * On LLCP link activation, we try to receive data on a pre-determined
187 int size = socket.receive(dataUnit);
303 packet = socket.receive();
356 // - otherwise, all calls to receive() on the connectionless socket
  /external/smack/asmack-master/lib/
jstun.jar 
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
MulticastSocketTest.java 214 receivingSocket.receive(rdp);
283 receivingSocket.receive(rdp);
303 receivingSocket.receive(rdp);
313 // Check that we can join on specific interfaces and that we only receive if data is
322 // they cannot send / receive multicast messages.
363 receivingSocket.receive(rdp);
527 receivingSocket.receive(rdp);
620 receivingSocket.receive(rdp);
707 // Test send receive.
719 // Receive the datagram
    [all...]
  /libcore/luni/src/main/java/java/nio/
DatagramChannelImpl.java 215 public SocketAddress receive(ByteBuffer target) throws IOException { method in class:DatagramChannelImpl
227 // receive real data packet, (not peek)
591 public void receive(DatagramPacket packet) throws IOException { method in class:DatagramChannelImpl.DatagramSocketAdapter
597 super.receive(packet);
599 // DatagramSocket.receive() will implicitly bind if it hasn't been done explicitly.
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
_stream_hixie75.py 115 """Receive a WebSocket frame and return its payload an unicode string.
214 # out closing handshake, and if we couldn't receive non-handshake
219 'Didn\'t receive valid ack for closing handshake')
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/
widget.js 40 * Keeps a reference to a node which should receive focus once a widget hides.
47 * Keeps a reference to a node which should receive selection once a widget
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
_stream_hixie75.py 116 """Receive a WebSocket frame and return its payload an unicode string.
215 # out closing handshake, and if we couldn't receive non-handshake
220 'Didn\'t receive valid ack for closing handshake')
  /external/libnfc-nxp/inc/
phNfcInterface.h 265 * This callback signals the completion of the asynchronous send or receive
337 pphNfcIF_Transact_t receive; member in struct:phNfc_sLowerIF
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageProcessor.java 115 * prevent sock.receive() from blocking forever
191 sock.receive(packet);
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyServer.java 83 @Override public void receive(final SpdyStream stream) throws IOException { method in class:SpdyServer
  /frameworks/base/core/java/android/net/
SntpClient.java 95 socket.receive(response);
  /frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
BandwidthEnforcementTestService.java 166 socket.receive(replyPacket);
  /libcore/luni/src/main/java/java/io/
PipedInputStream.java 221 * "Pipe broken" will be thrown in receive()
234 // Notify callers of receive()
299 * "Pipe broken" will be thrown in receive()
312 // Notify callers of receive()
377 protected synchronized void receive(int oneByte) throws IOException {
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketImplFactoryTest.java 183 protected void receive(DatagramPacket arg0) throws IOException { method in class:OldDatagramSocketImplFactoryTest.TestDatagramSocketImpl
  /libcore/luni/src/test/java/libcore/java/nio/channels/
DatagramChannelTest.java 63 assertNull(dc.receive(ByteBuffer.allocate(2048)));
  /packages/apps/Nfc/nci/jni/
NativeLlcpSocket.cpp 135 ** Description: Receive data from peer.
151 bool stat = PeerToPeer::getInstance().receive(jniHandle, reinterpret_cast<UINT8*>(&bytes[0]), bytes.size(), actualLen);
193 ** Description: Get peer's receive window size.
197 ** Returns: Peer's receive window size.
PeerToPeer.h 100 ** Description: Receive LLLCP-activated event from stack.
114 ** Description: Receive LLLCP-deactivated event from stack.
129 ** Description: Receive events from the stack.
173 ** recvWindow: Receive window size.
188 ** rw: Receive window size.
241 ** Function: receive
243 ** Description: Receive data from peer.
252 bool receive (tJNI_HANDLE jniHandle, UINT8* buffer, UINT16 bufferLen, UINT16& actualLen);
285 ** Description: Get peer's receive window size.
288 ** Returns: Peer's receive window size
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/ndefpush/
NdefPushServer.java 83 size = mSock.receive(partial);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyStream.java 307 this.source.receive(in, length);
336 * class uses synchronization to safely receive incoming data frames, it is
340 /** Buffer to receive data from the network into. Only accessed by the reader thread. */
354 * receive no more bytes beyond those already in the buffer.
425 void receive(BufferedSource in, long byteCount) throws IOException { method in class:SpdyStream.SpdyDataSource
449 // Fill the receive buffer without holding any locks.
528 SpdyStream.this.wait(); // Wait until we receive a WINDOW_UPDATE.

Completed in 822 milliseconds

1 2 34 5 6 7 8 9