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

1 2 3

  /frameworks/base/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;
h264bsd_decoder.h 62 u32 *readBytes);
  /frameworks/base/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,
  /external/llvm/lib/Support/
MemoryObject.cpp 16 int MemoryObject::readBytes(uint64_t address,
  /frameworks/compile/linkloader/include/
ELFSectionProgBits.h 56 AR.readBytes(chunk.getBuffer(), sh->getSize());
  /frameworks/compile/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...]
  /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 {
DrmInfo.java 65 mData = DrmUtils.readBytes(path);
  /external/webkit/Source/WebCore/platform/network/soup/
SocketStreamHandle.h 52 void readBytes(signed long, GError*);
  /frameworks/base/drm/common/
DrmRights.cpp 30 rightsLength = ReadWriteUtils::readBytes(rightsFilePath, &mRightsFromFile);
ReadWriteUtils.cpp 35 String8 ReadWriteUtils::readBytes(const String8& filePath) {
57 int ReadWriteUtils::readBytes(const String8& filePath, char** buffer) {
  /external/collada/src/dae/
daeZAEUncompressHandler.cpp 207 int readBytes = 1;
212 while (readBytes > 0)
214 readBytes = unzReadCurrentFile(zipFile, buffer, BUFFER_SIZE);
215 outFile.write(buffer, readBytes);
220 if (readBytes >= 0)
  /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);
  /cts/tests/tests/os/src/android/os/cts/
MemoryFileTest.java 177 notes = "Test readBytes",
178 method = "readBytes",
188 mMemoryFile.readBytes(gotData, 0, 0, gotData.length);
210 mMemoryFile.readBytes(data, srcOffset, destOffset, count);
233 mMemoryFile.readBytes(data, 0, 0, 128);
  /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);
  /frameworks/base/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 126 int readBytes = 0;
127 readBytes = fread(dest, 1, readSize, infile);
128 return readBytes;
  /frameworks/base/core/tests/coretests/src/android/os/
MemoryFileTest.java 35 throw new Exception("readBytes did not read back what writeBytes wrote");
57 file.readBytes(testString, 0, 0, testString.length);
79 file.readBytes(buffer, 2000, 0, testString.length);
117 file.readBytes(copy, 0, 0, file.length());
207 assertEquals(128, file.readBytes(data, 0, 0, 128));
208 fail("readBytes() after close() did not throw IOException.");
    [all...]
  /frameworks/compile/linkloader/include/impl/
ELFSectionStrTab.hxx 41 AR.readBytes(&*st->buf.begin(), sh->getSize());
  /libcore/luni/src/main/java/java/sql/
SQLInput.java 33 * directly. Reader methods such as {@code readLong} and {@code readBytes}
149 public byte[] readBytes() throws SQLException;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionaryFileDumper.java 272 for (int readBytes = input.read(buffer); readBytes >= 0; readBytes = input.read(buffer))
273 output.write(buffer, 0, readBytes);

Completed in 1939 milliseconds

1 2 3