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

1 2 3 4 5 6

  /external/jmonkeyengine/engine/src/core/com/jme3/export/
ReadListener.java 37 public void readBytes(int bytes);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_byte_stream.h 51 u32 *readBytes);
h264bsd_byte_stream.c 72 readBytes number of bytes "consumed" from the stream buffer
81 u32 *readBytes)
118 *readBytes = len;
185 *readBytes = pStrmData->strmBuffSize + initByteCount + zeroCount;
  /frameworks/av/drm/libdrmframework/include/
ReadWriteUtils.h 48 static String8 readBytes(const String8& filePath);
56 static int readBytes(const String8& filePath, char** buffer);
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidPipedStreamTest.java 121 byte readBytes[] = new byte[5];
127 ret = in.read(readBytes, nread, readBytes.length - nread);
137 int readInt = (((int) readBytes[0] & 0xff) << 24)
138 | (((int) readBytes[1] & 0xff) << 16)
139 | (((int) readBytes[2] & 0xff) << 8)
140 | (((int) readBytes[3] & 0xff));
144 assertEquals("Error at " + countRead, 0, readBytes[4]);
196 final byte readBytes[] = new byte[1024 * 2];
209 while (nread < readBytes.length)
    [all...]
  /external/llvm/include/llvm/Support/
MemoryObject.h 47 /// readBytes - Tries to read a contiguous range of bytes from the
61 virtual int readBytes(uint64_t address,
StreamableMemoryObject.h 25 /// that readByte/readBytes might have to block or do some work to get it.
32 /// Finally, getPointer can be used instead of readBytes to avoid extra copying.
59 /// readBytes - Tries to read a contiguous range of bytes from the
64 /// readBytes will fail.
75 virtual int readBytes(uint64_t address,
81 /// A pointer to it. More efficient than using readBytes if the
114 virtual int readBytes(uint64_t address,
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Input.java 140 public byte[] readBytes(int length);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
SimpleDERReader.java 53 private byte[] readBytes(int len) throws IOException
106 readBytes(len);
123 byte[] b = readBytes(len);
140 return readBytes(len);
155 return readBytes(len);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
OdexDependencies.java 57 dependencies[i] = new String(in.readBytes(stringLength), 0, stringLength-1, "US-ASCII");
61 dependencyChecksums[i] = in.readBytes(20);
OdexHeader.java 55 magic = in.readBytes(8);
  /external/llvm/lib/Support/
MemoryObject.cpp 16 int MemoryObject::readBytes(uint64_t address,
StreamableMemoryObject.cpp 32 virtual int readBytes(uint64_t address,
68 int RawMemoryObject::readBytes(uint64_t address,
112 int StreamingMemoryObject::readBytes(uint64_t address,
  /frameworks/rs/driver/linkloader/utils/
serialize.h 94 void readBytes(void *array, size_t size) {
104 readBytes(array, size);
110 readBytes(array, size);
117 readBytes(&v, TypeTraits<T>::size);
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_api.c 931 int32_t boundaryLen, leftLen, readBytes;
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
MemoryFileTest.java 120 mMemoryFile.readBytes(gotData, 0, 0, gotData.length);
142 mMemoryFile.readBytes(data, srcOffset, destOffset, count);
159 mMemoryFile.readBytes(data, 0, 0, 128);
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 39 /* package */ static byte[] readBytes(String path) throws IOException {
41 return readBytes(file);
45 /* package */ static byte[] readBytes(File file) throws IOException {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
ByteEncodedValue.java 44 value = (byte)EncodedValueUtils.decodeSignedIntegralValue(in.readBytes(1));
  /external/webkit/Source/WebCore/platform/network/soup/
SocketStreamHandle.h 52 void readBytes(signed long, GError*);
  /frameworks/av/drm/common/
DrmRights.cpp 30 rightsLength = ReadWriteUtils::readBytes(rightsFilePath, &mRightsFromFile);
  /frameworks/rs/driver/linkloader/include/
ELFSectionProgBits.h 72 AR.readBytes(chunk.getBuffer(), sh->getSize());
  /frameworks/base/core/java/android/os/
DropBoxManager.java 196 int readBytes = 0;
198 while (n >= 0 && (readBytes += n) < maxBytes) {
199 n = is.read(buf, readBytes, maxBytes - readBytes);
201 return new String(buf, 0, readBytes);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
SimpleWikiHelper.java 196 int readBytes = 0;
197 while ((readBytes = inputStream.read(sBuffer)) != -1) {
198 content.write(sBuffer, 0, readBytes);
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
SimpleWikiHelper.java 203 int readBytes = 0;
204 while ((readBytes = inputStream.read(sBuffer)) != -1) {
205 content.write(sBuffer, 0, readBytes);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
BlenderInputStream.java 173 int bytesRead = this.readBytes(identifier);
194 bytesRead = this.readBytes(versionNumber);
224 private int readBytes(byte[] bytes) {

Completed in 922 milliseconds

1 2 3 4 5 6