HomeSort by relevance Sort by last modified time
    Searched full:sendbytes (Results 1 - 11 of 11) sorted by null

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DatagramSocketTest.java 252 final byte[] sendBytes = { 'T', 'e', 's', 't', 0 };
253 send = new DatagramPacket(sendBytes, sendBytes.length);
260 .getLength() == sendBytes.length);
263 + new String(sendBytes), new String(receive.getData(), 0,
264 receive.getLength()).equals(new String(sendBytes)));
318 send = new DatagramPacket(sendBytes, sendBytes.length);
325 + receive.getLength(), receive.getLength() == sendBytes.length);
328 + new String(sendBytes), new String(receive.getData(), 0
    [all...]
SocketTest.java     [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketTest.java 397 byte[] sendBytes = { 'T', 'e', 's', 't', 0 };
398 DatagramPacket send = new DatagramPacket(sendBytes,
399 sendBytes.length);
406 receive.getLength() == sendBytes.length);
409 + ":" + new String(sendBytes), new String(
411 .equals(new String(sendBytes)));
480 byte[] sendBytes = { 'T', 'e', 's', 't', 0 };
481 DatagramPacket send = new DatagramPacket(sendBytes,
482 sendBytes.length);
491 receive.getLength() == sendBytes.length)
    [all...]
SocketTest.java 301 public Future<byte[]> enqueue(final byte[] sendBytes, final int receiveByteCount)
307 out.write(sendBytes);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
i2c.h 49 int (*sendbytes)(struct snd_i2c_device *device, unsigned char *bytes, int count); member in struct:snd_i2c_ops
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
i2c.h 49 int (*sendbytes)(struct snd_i2c_device *device, unsigned char *bytes, int count); member in struct:snd_i2c_ops
  /frameworks/base/services/common_time/
common_time_server.cpp 789 ssize_t sendBytes = sendto(
793 if (sendBytes == -1) {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
IOHandler.java 159 public Socket sendBytes(InetAddress senderAddress, InetAddress receiverAddress,
168 "sendBytes " + transport + " inAddr " + receiverAddress.getHostAddress()
TCPMessageChannel.java 252 Socket sock = this.sipStack.ioHandler.sendBytes(this.messageProcessor.getIpAddress(),
310 Socket sock = this.sipStack.ioHandler.sendBytes(this.messageProcessor.getIpAddress(),
TLSMessageChannel.java 255 Socket sock = this.sipStack.ioHandler.sendBytes(
308 Socket sock = this.sipStack.ioHandler.sendBytes(this.messageProcessor.getIpAddress(),
UDPMessageChannel.java 793 Socket outputSocket = sipStack.ioHandler.sendBytes(
    [all...]

Completed in 344 milliseconds