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

12 3 4 5 6 7 8 9

  /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
  /external/chromium_org/chrome/browser/resources/history/
history_focus_manager.js 10 * do not receive focus.
  /external/chromium/crypto/
hmac_win.cc 112 if (!CryptAcquireContext(plat_->provider_.receive(), NULL, NULL,
143 plat_->key_.receive())) {
179 hash.receive()))
symmetric_key_win.cc 113 BOOL ok = CryptAcquireContext(safe_provider.receive(), NULL, NULL,
125 safe_key.receive());
182 BOOL ok = CryptAcquireContext(safe_provider.receive(), NULL, NULL,
215 BOOL ok = CryptCreateHash(provider, CALG_HMAC, key, 0, safe_hash.receive());
255 BOOL ok = CryptDuplicateHash(hash, NULL, 0, safe_hash.receive());
285 ok = CryptDuplicateHash(hash, NULL, 0, safe_hash.receive());
385 BOOL ok = CryptAcquireContext(provider.receive(), NULL, NULL, provider_type,
485 BOOL ok = CryptAcquireContext(provider.receive(), NULL, NULL, provider_type,
  /external/qemu/
net.h 16 NetReceive *receive; member in struct:VLANClientState
58 NetReceive *receive,
142 NetReceive *receive,
  /libcore/luni/src/test/java/libcore/java/net/
OldAndroidDatagramTest.java 59 socket.receive(packet);
150 socket.receive(packet);
176 sock.receive(pack);
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepMessenger.java 67 mSocket.receive(responseBytes);
109 size = mSocket.receive(partial);
152 size = mSocket.receive(partial);
  /external/chromium_org/chrome/browser/resources/chromeos/keyboard/
keyboard_utils.js 54 * @param {HTMLElement} element Element that should receive the event.
77 * @param {HTMLElement} element Element that should receive the event.
87 * @param {HTMLElement} element Element that should receive the event.
  /external/chromium/chrome/browser/resources/net_internals/
httpcacheview.js 14 // Register to receive http cache info.
  /external/chromium_org/crypto/
symmetric_key_win.cc 113 BOOL ok = CryptAcquireContext(safe_provider.receive(), NULL, NULL,
125 safe_key.receive());
182 BOOL ok = CryptAcquireContext(safe_provider.receive(), NULL, NULL,
215 BOOL ok = CryptCreateHash(provider, CALG_HMAC, key, 0, safe_hash.receive());
255 BOOL ok = CryptDuplicateHash(hash, NULL, 0, safe_hash.receive());
285 ok = CryptDuplicateHash(hash, NULL, 0, safe_hash.receive());
385 BOOL ok = CryptAcquireContext(provider.receive(), NULL, NULL, provider_type,
485 BOOL ok = CryptAcquireContext(provider.receive(), NULL, NULL, provider_type,
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdataengine.h 114 virtual bool SetReceive(bool receive) {
115 receiving_ = receive;
  /frameworks/av/media/libstagefright/rtsp/
ARTPConnection.h 81 status_t receive(StreamInfo *info, bool receiveRTP);
  /libcore/harmony-tests/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
  /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 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
  /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/tests/src/com/android/nfc/
MockLlcpSocket.java 55 public int receive(byte[] receiveBuffer) throws IOException { method in class:MockLlcpSocket
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmlec.h 95 unsigned char receive; /* 1= receive vcc, 0 = send vcc */ member in struct:atmlec_ioc
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmlec.h 95 unsigned char receive; /* 1= receive vcc, 0 = send vcc */ member in struct:atmlec_ioc
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmlec.h 95 unsigned char receive; /* 1= receive vcc, 0 = send vcc */ 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)

Completed in 1530 milliseconds

12 3 4 5 6 7 8 9