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

1 2 3 4

  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 40 public abstract void readByteArray(byte[] dst, int dstOffset, int byteCount);
HeapBufferIterator.java 50 public void readByteArray(byte[] dst, int dstOffset, int byteCount) {
NioBufferIterator.java 48 public void readByteArray(byte[] dst, int dstOffset, int byteCount) {
  /external/skia/src/core/
SkFlattenableBuffers.cpp 29 this->readByteArray(&proc);
SkMallocPixelRef.cpp 57 buffer.readByteArray(fStorage);
  /external/smack/src/org/xbill/DNS/
DNSInput.java 192 readByteArray(byte [] b, int off, int len) throws WireParseException {
204 readByteArray(int len) throws WireParseException {
218 readByteArray() {
236 return readByteArray(len);
GenericEDNSOption.java 34 data = in.readByteArray();
UNKRecord.java 29 data = in.readByteArray();
AAAARecord.java 42 in.readByteArray(16));
DHCIDRecord.java 39 data = in.readByteArray();
NULLRecord.java 43 data = in.readByteArray();
IPSECKEYRecord.java 108 gateway = InetAddress.getByAddress(in.readByteArray(4));
111 gateway = InetAddress.getByAddress(in.readByteArray(16));
120 key = in.readByteArray();
ARecord.java 59 addr = fromArray(in.readByteArray(4));
NSAPRecord.java 77 address = in.readByteArray();
SSHFPRecord.java 62 fingerprint = in.readByteArray();
NSEC3Record.java 111 salt = in.readByteArray(salt_length);
116 next = in.readByteArray(next_length);
TKEYRecord.java 88 key = in.readByteArray(keylen);
94 other = in.readByteArray(otherlen);
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsRawData.java 36 source.readByteArray(data);
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
MeshCollisionShape.java 107 triangleIndexBase = ByteBuffer.wrap(capsule.readByteArray("triangleIndexBase", new byte[0]));
108 vertexBase = ByteBuffer.wrap(capsule.readByteArray("vertexBase", new byte[0]));
GImpactCollisionShape.java 111 triangleIndexBase = ByteBuffer.wrap(capsule.readByteArray("triangleIndexBase", new byte[0]));
112 vertexBase = ByteBuffer.wrap(capsule.readByteArray("vertexBase", new byte[0]));
  /frameworks/base/core/java/android/nfc/
ApduList.java 47 in.readByteArray(cmd);
TransceiveResult.java 80 in.readByteArray(responseData);
  /frameworks/base/core/java/com/android/internal/util/
BitwiseInputStream.java 95 public byte[] readByteArray(int bits) throws AccessException {
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
GImpactCollisionShape.java 130 triangleIndexBase = ByteBuffer.wrap(capsule.readByteArray("triangleIndexBase", new byte[0]));
131 vertexBase = ByteBuffer.wrap(capsule.readByteArray("vertexBase", new byte[0]));
MeshCollisionShape.java 125 triangleIndexBase = ByteBuffer.wrap(capsule.readByteArray("triangleIndexBase", new byte[0]));
126 vertexBase = ByteBuffer.wrap(capsule.readByteArray("vertexBase", new byte[0])).order(ByteOrder.nativeOrder());

Completed in 923 milliseconds

1 2 3 4