/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/ |
D | SimpleDERReader.java | 53 private byte[] readBytes(int len) throws IOException in readBytes() method in SimpleDERReader 106 readBytes(len); in ignoreNextObject() 123 byte[] b = readBytes(len); in readInt() 140 return readBytes(len); in readSequenceAsByteArray() 155 return readBytes(len); in readOctetString()
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
D | OdexDependencies.java | 57 … dependencies[i] = new String(in.readBytes(stringLength), 0, stringLength-1, "US-ASCII"); in OdexDependencies() 61 dependencyChecksums[i] = in.readBytes(20); in OdexDependencies()
|
D | OdexHeader.java | 55 magic = in.readBytes(8); in OdexHeader()
|
D | HeaderItem.java | 60 byte[] readMagic = in.readBytes(8); in readItem() 68 in.readBytes(20); //checksum in readItem()
|
/external/llvm/lib/Support/ |
D | StreamableMemoryObject.cpp | 29 virtual int readBytes(uint64_t address, 62 int RawMemoryObject::readBytes(uint64_t address, in readBytes() function in __anon656dde720111::RawMemoryObject 106 int StreamingMemoryObject::readBytes(uint64_t address, in readBytes() function in llvm::StreamingMemoryObject
|
D | MemoryObject.cpp | 16 int MemoryObject::readBytes(uint64_t address, in readBytes() function in MemoryObject
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
D | BlenderInputStream.java | 173 int bytesRead = this.readBytes(identifier); in readFileHeader() 194 bytesRead = this.readBytes(versionNumber); in readFileHeader() 224 private int readBytes(byte[] bytes) { in readBytes() method in BlenderInputStream
|
/external/llvm/include/llvm/Support/ |
D | StreamableMemoryObject.h | 74 virtual int readBytes(uint64_t address, 113 virtual int readBytes(uint64_t address,
|
D | MemoryObject.h | 61 virtual int readBytes(uint64_t address,
|
/external/jmonkeyengine/engine/src/core/com/jme3/export/ |
D | ReadListener.java | 37 public void readBytes(int bytes); in readBytes() method
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/ |
D | TypesReader.java | 63 public byte[] readBytes(int len) throws IOException in readBytes() method in TypesReader 76 public void readBytes(byte[] dst, int off, int len) throws IOException in readBytes() method in TypesReader
|
/external/jmdns/src/javax/jmdns/impl/ |
D | DNSIncoming.java | 66 public byte[] readBytes(int len) { in readBytes() method in DNSIncoming.MessageInputStream 300 … = new DNSRecord.IPv4Address(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len)); in readAnswer() 303 … = new DNSRecord.IPv6Address(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len)); in readAnswer() 316 … rec = new DNSRecord.Text(domain, recordClass, unique, ttl, _messageInputStream.readBytes(len)); in readAnswer() 366 optiondata = _messageInputStream.readBytes(optionLength); in readAnswer()
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
D | Input.java | 140 public byte[] readBytes(int length); in readBytes() method
|
/external/webkit/Source/WebCore/platform/network/soup/ |
D | SocketStreamHandleSoup.cpp | 125 void SocketStreamHandle::readBytes(signed long bytesRead, GError* error) in readBytes() function in WebCore::SocketStreamHandle 264 handle->readBytes(bytesRead, error.get()); in readReadyCallback()
|
D | SocketStreamHandle.h | 52 void readBytes(signed long, GError*);
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/ |
D | BinaryImporter.java | 207 if (listener != null) listener.readBytes(bytes); in load() 225 if (listener != null) listener.readBytes(bytes); in load() 236 if (listener != null) listener.readBytes(size); in load()
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/ |
D | ByteEncodedValue.java | 44 value = (byte)EncodedValueUtils.decodeSignedIntegralValue(in.readBytes(1)); in ByteEncodedValue()
|
D | LongEncodedValue.java | 46 value = EncodedValueUtils.decodeSignedIntegralValue(in.readBytes(valueArg+1)); in LongEncodedValue()
|
D | CharEncodedValue.java | 46 value = (char)EncodedValueUtils.decodeUnsignedIntegralValue(in.readBytes(valueArg+1)); in CharEncodedValue()
|
D | ShortEncodedValue.java | 46 value = (short) EncodedValueUtils.decodeSignedIntegralValue(in.readBytes(valueArg+1)); in ShortEncodedValue()
|
D | IntEncodedValue.java | 46 value = (int)EncodedValueUtils.decodeSignedIntegralValue(in.readBytes(valueArg+1)); in IntEncodedValue()
|
D | DoubleEncodedValue.java | 46 long longValue = EncodedValueUtils.decodeRightZeroExtendedValue(in.readBytes(valueArg + 1)); in DoubleEncodedValue()
|
D | FloatEncodedValue.java | 46 long longValue = EncodedValueUtils.decodeRightZeroExtendedValue(in.readBytes(valueArg + 1)); in FloatEncodedValue()
|
D | FieldEncodedValue.java | 49 int index = (int) EncodedValueUtils.decodeUnsignedIntegralValue(in.readBytes(valueArg+1)); in FieldEncodedValue()
|
D | MethodEncodedValue.java | 49 int index = (int) EncodedValueUtils.decodeUnsignedIntegralValue(in.readBytes(valueArg+1)); in MethodEncodedValue()
|