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

1 2 3

  /frameworks/base/core/java/android/nfc/
IP2pInitiator.aidl 26 byte[] receive(int nativeHandle);
ILlcpSocket.aidl 32 int receive(int nativeHandle, out byte[] receiveBuffer);
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketTest.java 72 ms.receive(rdp);
300 DatagramPacket receive = new DatagramPacket(new byte[20], 20); local
302 ds.receive(receive);
304 assertTrue("Wrong size: " + receive.getLength(), receive
306 assertTrue("Wrong receiver", receive.getAddress().equals(localHost));
325 ms.receive(rdp);
364 DatagramPacket receive = new DatagramPacket(new byte[20], 20); local
366 ds.receive(receive)
403 DatagramPacket receive = new DatagramPacket(new byte[20], 20); local
486 DatagramPacket receive = new DatagramPacket(new byte[20], 20); local
538 DatagramPacket receive = new DatagramPacket(new byte[20], 20); local
590 DatagramPacket receive = new DatagramPacket(new byte[20], 20); local
1132 protected void receive(DatagramPacket arg0) throws IOException {} method in class:OldDatagramSocketTest.testDatagramSocketImpl
1472 DatagramPacket receive = new DatagramPacket(new byte[20], 20); local
1526 DatagramPacket receive = new DatagramPacket(new byte[20], 20); local
1609 DatagramPacket receive = new DatagramPacket(new byte[20], 20); local
1661 DatagramPacket receive = new DatagramPacket(new byte[20], 20); local
1713 DatagramPacket receive = new DatagramPacket(new byte[20], 20); local
2278 protected void receive(DatagramPacket arg0) throws IOException { method in class:OldDatagramSocketTest.TestDatagramSocketImpl
    [all...]
OldDatagramPacketTest.java 54 socket.receive(packet);
81 socket.receive(packet);
  /frameworks/base/core/java/com/android/internal/nfc/
P2pInitiator.java 58 public byte[] receive() throws IOException { method in class:P2pInitiator
60 byte[] result = mService.receive(mHandle);
66 Log.e(TAG, "RemoteException in receive(): ", e);
LlcpSocket.java 180 * Receive data from the connected LLCP socket
188 public int receive(byte[] receiveBuffer) throws IOException { method in class:LlcpSocket
191 receivedLength = mService.receive(mHandle, receiveBuffer);
231 * Returns the local Receive Window(RW) of the socket
268 * Returns the remote Receive Window(RW) of the connected remote socket.
  /external/dbus/bus/
policy.c 63 rule->d.receive.message_type = DBUS_MESSAGE_TYPE_INVALID;
67 rule->d.receive.requested_reply = rule->allow;
105 dbus_free (rule->d.receive.path);
106 dbus_free (rule->d.receive.interface);
107 dbus_free (rule->d.receive.member);
108 dbus_free (rule->d.receive.error);
109 dbus_free (rule->d.receive.origin);
810 rule->d.receive.message_type == DBUS_MESSAGE_TYPE_INVALID &&
811 rule->d.receive.path == NULL &&
812 rule->d.receive.interface == NULL &
    [all...]
policy.h 81 } receive; member in union:BusPolicyRule::__anon3340
  /libcore/luni/src/main/java/java/io/
PipedWriter.java 166 reader.receive(buffer, offset, count);
195 reader.receive((char) c);
PipedOutputStream.java 184 stream.receive(oneByte);
PipedReader.java 248 * of "Pipe broken" will be thrown in receive()
262 // Notify callers of receive()
339 * If the buffer is full and the thread sending #receive is interrupted, the
349 synchronized void receive(char oneChar) throws IOException { method in class:PipedReader
389 * If the buffer is full and the thread sending #receive is interrupted, the
403 synchronized void receive(char[] chars, int offset, int count) throws IOException { method in class:PipedReader
  /frameworks/base/media/libstagefright/
ShoutcastSource.cpp 114 ssize_t n = mHttp->receive(buffer->data(), num_bytes);
126 n = mHttp->receive((char *)&num_16_byte_blocks, 1);
133 n = mHttp->receive(&meta[meta_length], meta_size - meta_length);
  /frameworks/base/media/libstagefright/include/
HTTPStream.h 44 // Receive up to "size" bytes of data.
45 ssize_t receive(void *data, size_t size);
71 // Receive a line of data terminated by CRLF, line will be '\0' terminated
  /external/qemu/
net.h 17 NetReceive *receive; member in struct:VLANClientState
59 NetReceive *receive,
143 NetReceive *receive,
  /frameworks/base/tests/CoreTests/android/core/
DatagramTest.java 59 socket.receive(packet);
151 socket.receive(packet);
178 sock.receive(pack);
  /external/dbus/test/data/valid-config-files/system.d/
test.conf 15 <!-- Allow any connection to receive the message, but
  /frameworks/base/media/libstagefright/rtsp/
ARTPConnection.h 86 status_t receive(StreamInfo *info, bool receiveRTP);
ARTSPConnection.h 88 status_t receive(void *data, size_t size);
  /libcore/luni/src/main/java/java/net/
DatagramSocketImpl.java 48 * bound prior to attempting to send or receive data.
129 * a group before being able to receive data. Further, a socket may be a
142 * a group before being able to receive data. Further, a socket may be a
148 * the local network interface which will receive the multicast
206 protected abstract void receive(DatagramPacket pack) throws IOException; method in class:DatagramSocketImpl
272 * {@code peekData()} or {@code receive()} call. This call blocks until
DatagramSocket.java 130 * receive()} is to check whether the packet address/port matches the
274 * Gets the socket receive buffer size. ( {@code SocketOptions.SO_RCVBUF} )
298 * Gets the socket {@link SocketOptions#SO_TIMEOUT receive timeout}.
322 public synchronized void receive(DatagramPacket pack) throws IOException { method in class:DatagramSocket
353 // receive packet to temporary buffer
356 impl.receive(tempPack);
369 // receive packets from sender's address and port
378 impl.receive(tempPack);
387 impl.receive(tempPack);
402 impl.receive(pack)
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
DatagramChannel.java 36 * 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
184 public abstract SocketAddress receive(ByteBuffer target) throws IOException; method in class:DatagramChannel
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
MockDatagramChannel.java 49 public SocketAddress receive(ByteBuffer arg0) throws IOException { method in class:MockDatagramChannel
  /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);
phFriNfc_LlcpMac.h 70 * - Receive packets through the LLCP link
158 pphFriNfcLlpcMac_Receive_t receive; member in struct:phFriNfc_LlcpMac_Interface
  /external/bluetooth/bluez/compat/
bnep.c 282 receive:
303 goto receive;

Completed in 453 milliseconds

1 2 3