Searched refs:readBytes (Results 1 - 23 of 23) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_byte_stream.h51 u32 *readBytes);
H A Dh264bsd_byte_stream.c72 readBytes number of bytes "consumed" from the stream buffer
81 u32 *readBytes)
118 *readBytes = len;
185 *readBytes = pStrmData->strmBuffSize + initByteCount + zeroCount;
80 h264bsdExtractNalUnit(u8 *pByteStream, u32 len, strmData_t *pStrmData, u32 *readBytes) argument
H A Dh264bsd_decoder.h62 u32 *readBytes);
H A Dh264bsd_decoder.c137 readBytes number of bytes read from the stream is stored
152 u32 *readBytes)
171 ASSERT(readBytes);
180 *readBytes = pStorage->prevBytesConsumed;
184 tmp = h264bsdExtractNalUnit(byteStrm, len, &strm, readBytes);
192 pStorage->prevBytesConsumed = *readBytes;
255 * readBytes to 0 */
256 *readBytes = 0;
353 *readBytes = 0;
151 h264bsdDecode(storage_t *pStorage, u8 *byteStrm, u32 len, u32 picId, u32 *readBytes) argument
/frameworks/av/drm/libdrmframework/include/
H A DReadWriteUtils.h48 static String8 readBytes(const String8& filePath);
56 static int readBytes(const String8& filePath, char** buffer);
/frameworks/rs/cpu_ref/linkloader/utils/
H A Dserialize.h94 void readBytes(void *array, size_t size) { function in class:ArchiveReader
104 readBytes(array, size);
110 readBytes(array, size);
117 readBytes(&v, TypeTraits<T>::size);
/frameworks/base/drm/java/android/drm/
H A DDrmUtils.java38 /* package */ static byte[] readBytes(String path) throws IOException { method in class:DrmUtils
40 return readBytes(file);
44 /* package */ static byte[] readBytes(File file) throws IOException { method in class:DrmUtils
H A DDrmInfo.java72 mData = DrmUtils.readBytes(path);
H A DDrmRights.java98 mData = DrmUtils.readBytes(rightsFile);
/frameworks/av/drm/common/
H A DDrmRights.cpp30 rightsLength = ReadWriteUtils::readBytes(rightsFilePath, &mRightsFromFile);
H A DReadWriteUtils.cpp35 String8 ReadWriteUtils::readBytes(const String8& filePath) { function in class:ReadWriteUtils
57 int ReadWriteUtils::readBytes(const String8& filePath, char** buffer) { function in class:ReadWriteUtils
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java193 int readBytes = 0;
195 while (n >= 0 && (readBytes += n) < maxBytes) {
196 n = is.read(buf, readBytes, maxBytes - readBytes);
198 return new String(buf, 0, readBytes);
H A DMemoryFile.java198 public int readBytes(byte[] buffer, int srcOffset, int destOffset, int count) method in class:MemoryFile
305 // readBytes() also does this check, but we need to do it before
313 int result = readBytes(buffer, mOffset, offset, count);
/frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
H A DAAC_E_SAMPLES.c126 int readBytes = 0; local
127 readBytes = fread(dest, 1, readSize, infile);
128 return readBytes;
/frameworks/base/core/tests/coretests/src/android/os/
H A DMemoryFileTest.java35 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.");
/frameworks/rs/cpu_ref/linkloader/include/
H A DELFSectionProgBits.h84 AR.readBytes(chunk.getBuffer(), sh->getSize());
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSectionStrTab.hxx40 AR.readBytes(&*st->buf.begin(), sh->getSize());
/frameworks/base/obex/javax/obex/
H A DPrivateOutputStream.java127 public synchronized byte[] readBytes(int size) { method in class:PrivateOutputStream
H A DClientOperation.java494 byte[] body = mPrivateOutput.readBytes(bodyLength);
H A DServerOperation.java361 byte[] body = mPrivateOutput.readBytes(bodyLength);
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtypeArray.java247 final int readBytes = unzipper.read(result, totalReadBytes, restBytes);
248 if (readBytes < 0) {
251 totalReadBytes += readBytes;
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp3054 if (Bytes->readBytes(0, 16, buf) == -1)
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp3389 if (Bytes->readBytes(0, 16, buf) == -1)

Completed in 1002 milliseconds