HomeSort by relevance Sort by last modified time
    Searched refs:receive (Results 26 - 50 of 160) sorted by null

12 3 4 5 6 7

  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
NettyHttpClient.java 159 receive((HttpResponse) message); method
162 receive((HttpContent) message); method
173 void receive(HttpResponse response) { method in class:NettyHttpClient.HttpChannel
177 void receive(HttpContent content) { method in class:NettyHttpClient.HttpChannel
  /frameworks/av/media/libstagefright/rtsp/
ARTPConnection.h 81 status_t receive(StreamInfo *info, bool receiveRTP);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
MockDatagramChannel.java 54 public SocketAddress receive(ByteBuffer arg0) throws IOException { method in class:MockDatagramChannel
  /libcore/luni/src/main/java/java/net/
DatagramSocketImpl.java 47 * bound prior to attempting to send or receive data.
117 * a group before being able to receive data. Further, a socket may be a
130 * a group before being able to receive data. Further, a socket may be a
136 * the local network interface which will receive the multicast
194 protected abstract void receive(DatagramPacket pack) throws IOException; method in class:DatagramSocketImpl
260 * {@code peekData()} or {@code receive()} call. This call blocks until
  /libcore/luni/src/main/java/java/nio/channels/
DatagramChannel.java 39 * is the reduced effort of security checks during send and receive. When
135 * in order to send and receive datagrams.
161 * This method executes the same security checks as the receive method of
181 public abstract SocketAddress receive(ByteBuffer target) throws IOException; method in class:DatagramChannel
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeLlcpSocket.java 69 public int receive(byte[] recvBuff) throws IOException { method in class:NativeLlcpSocket
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeLlcpSocket.java 69 public int receive(byte[] recvBuff) throws IOException { method in class:NativeLlcpSocket
  /packages/apps/Nfc/tests/src/com/android/nfc/
MockLlcpSocket.java 55 public int receive(byte[] receiveBuffer) throws IOException { method in class:MockLlcpSocket
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
atmlec.h 96 unsigned char receive; /* 1= receive vcc, 0 = send vcc */ member in struct:atmlec_ioc
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
atmlec.h 96 unsigned char receive; /* 1= receive vcc, 0 = send vcc */ member in struct:atmlec_ioc
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
atmlec.h 100 unsigned char receive; member in struct:atmlec_ioc
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
atmlec.h 100 unsigned char receive; member in struct:atmlec_ioc
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
atmlec.h 100 unsigned char receive; member in struct:atmlec_ioc
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
atmlec.h 100 unsigned char receive; member in struct:atmlec_ioc
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
atmlec.h 100 unsigned char receive; member in struct:atmlec_ioc
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
atmlec.h 100 unsigned char receive; member in struct:atmlec_ioc
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Connection.java 300 Socket.receive(sock, handshake.array(), 1);
307 Socket.receive(sock, handshake.array(), handshake.array().length);
330 Socket.receive(sock, discard, discard.length);
335 // Receive query data.
337 Socket.receive(sock, name_array, name_array.length);
Channel.java 324 // I/O loop in which we will receive data from the emulator. Note that
618 // Initialize byte buffer large enough to receive packet header.
633 // This will receive total packet size + packet type.
634 socket.receive(header.array());
650 socket.receive(header.array(), ext);
657 socket.receive(msg_data.array());
667 socket.receive(header.array(), extq);
675 socket.receive(query_data.array());
687 socket.receive(discard_data);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_socketserver.py 40 def receive(sock, n, timeout=20): function
164 buf = data = receive(s, 100)
166 data = receive(s, 100)
174 buf = data = receive(s, 100)
176 data = receive(s, 100)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_socketserver.py 40 def receive(sock, n, timeout=20): function
164 buf = data = receive(s, 100)
166 data = receive(s, 100)
174 buf = data = receive(s, 100)
176 data = receive(s, 100)
  /cts/tests/tests/net/src/android/net/rtp/cts/
AudioGroupTest.java 80 socket.receive(packet);
91 socket.receive(packet);
  /external/libnfc-nxp/src/
phFriNfc_LlcpMac.c 172 if(LlcpMac->LlcpMacInterface.receive == NULL || NULL==psData || NULL==ReceiveLlcpMac_Cb || NULL==pContext)
178 status = LlcpMac->LlcpMacInterface.receive(LlcpMac,psData,ReceiveLlcpMac_Cb,pContext);
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 6 // the "options" section below. The dnsextd daemon will receive DNS packets
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_eglapi.cpp 66 if (stream->receive(&cmdSize, sizeof(uint32_t)) < 0) {
80 // receive the command
81 if (stream->receive(cmdBuf, cmdSize) < 0) {
  /libcore/luni/src/main/java/java/io/
PipedReader.java 238 * of "Pipe broken" will be thrown in receive()
252 // Notify callers of receive()
326 * If the buffer is full and the thread sending #receive is interrupted, the
336 synchronized void receive(char oneChar) throws IOException { method in class:PipedReader
376 * If the buffer is full and the thread sending #receive is interrupted, the
383 synchronized void receive(char[] chars, int offset, int count) throws IOException { method in class:PipedReader

Completed in 561 milliseconds

12 3 4 5 6 7