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

1 2 3 4 5 6 7

  /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
59 virtual int readBytes(uint64_t address, uint64_t size, uint8_t *buf) const;
StringRefMemoryObject.h 36 int readBytes(uint64_t Addr, uint64_t Size, uint8_t *Buf) const override;
StreamableMemoryObject.h 27 /// that readByte/readBytes might have to block or do some work to get it.
34 /// Finally, getPointer can be used instead of readBytes to avoid extra copying.
61 /// readBytes - Tries to read a contiguous range of bytes from the
66 /// readBytes will fail.
75 int readBytes(uint64_t address, uint64_t size,
79 /// A pointer to it. More efficient than using readBytes if the
112 int readBytes(uint64_t address, uint64_t size,
  /external/llvm/lib/Support/
MemoryObject.cpp 16 int MemoryObject::readBytes(uint64_t address,
StringRefMemoryObject.cpp 21 int StringRefMemoryObject::readBytes(uint64_t Addr,
StreamableMemoryObject.cpp 33 int readBytes(uint64_t address, uint64_t size,
66 int RawMemoryObject::readBytes(uint64_t address,
108 int StreamingMemoryObject::readBytes(uint64_t address,
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlMessageWrapper.java 132 String receiverId = new String(readBytes(stream,
136 byte[] payloadLenBytes = readBytes(stream, HEADER_FIELD_PAYLOAD_LENGTH);
139 int protocolVersion = shortBigEndianBytesToInt(readBytes(stream,
142 byte createorId = readBytes(stream, 1)[0];
143 byte[] padding = readBytes(stream, HEADER_FIELD_PADDING_LENGTH);
144 byte[] payload = readBytes(stream, (int)payloadLen);
247 private static byte[] readBytes(InputStream stream, int numBytes)
  /frameworks/rs/cpu_ref/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);
  /packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/xlt/src/
xltdecwbxml.c 174 * FUNCTION: readBytes
183 static Boolean_t readBytes(wbxmlScannerPrivPtr_t pScanner, Long_t bytes);
433 * FUNCTION: readBytes
438 readBytes(wbxmlScannerPrivPtr_t pScanner, Long_t bytes)
503 if (!readBytes(pScanner, 1))
530 if (!readBytes(pScanner, 1))
537 if (!readBytes(pScanner, 1))
560 if (!readBytes(pScanner, 1))
579 if (!readBytes(pScanner, 1))
590 readBytes(pScanner, len)
    [all...]
xltdecxml.c 121 * FUNCTION: readBytes
137 static Boolean_t readBytes(xmlScannerPrivPtr_t pScanner, Long_t bytes);
348 * FUNCTION: readBytes
353 readBytes(xmlScannerPrivPtr_t pScanner, Long_t bytes)
377 if (!readBytes(pScanner, 1)) return;
440 readBytes(pScanner, 9);
451 readBytes(pScanner, 6);
460 readBytes(pScanner, 6);
484 readBytes(pScanner, 1);
500 readBytes(pScanner, 5)
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/src/
xltdecwbxml.c 176 * FUNCTION: readBytes
185 static Boolean_t readBytes(wbxmlScannerPrivPtr_t pScanner, Long_t bytes);
435 * FUNCTION: readBytes
440 readBytes(wbxmlScannerPrivPtr_t pScanner, Long_t bytes)
505 if (!readBytes(pScanner, 1))
532 if (!readBytes(pScanner, 1))
539 if (!readBytes(pScanner, 1))
562 if (!readBytes(pScanner, 1))
581 if (!readBytes(pScanner, 1))
592 readBytes(pScanner, len)
    [all...]
xltdecxml.c 121 * FUNCTION: readBytes
137 static Boolean_t readBytes(xmlScannerPrivPtr_t pScanner, Long_t bytes);
348 * FUNCTION: readBytes
353 readBytes(xmlScannerPrivPtr_t pScanner, Long_t bytes)
377 if (!readBytes(pScanner, 1)) return;
440 readBytes(pScanner, 9);
451 readBytes(pScanner, 6);
460 readBytes(pScanner, 6);
484 readBytes(pScanner, 1);
500 readBytes(pScanner, 5)
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
MemoryFileTest.java 121 mMemoryFile.readBytes(gotData, 0, 0, gotData.length);
143 mMemoryFile.readBytes(data, srcOffset, destOffset, count);
160 mMemoryFile.readBytes(data, 0, 0, 128);
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
WebRtcAudioRecord.java 164 int readBytes = 0;
166 readBytes = _audioRecord.read(_tempBufRec, 0, lengthInBytes);
167 // DoLog("read " + readBytes + "from SC");
170 if (readBytes != lengthInBytes) {
171 // DoLog("Could not read all data from sc (read = " + readBytes
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 38 /* package */ static byte[] readBytes(String path) throws IOException {
40 return readBytes(file);
44 /* package */ static byte[] readBytes(File file) throws IOException {
  /external/qemu/android/filesystems/
ramdisk_extractor.cpp 90 // |*readBytes| to the number of bytes that were read.
92 bool tryRead(void* buffer, size_t len, size_t* readBytes) {
93 *readBytes = 0;
127 *readBytes += ret;
130 return (!mError && *readBytes > 0);
  /frameworks/av/drm/common/
DrmRights.cpp 30 rightsLength = ReadWriteUtils::readBytes(rightsFilePath, &mRightsFromFile);
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionProgBits.h 84 AR.readBytes(chunk.getBuffer(), sh->getSize());
  /frameworks/base/core/java/android/os/
DropBoxManager.java 193 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);
  /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);

Completed in 618 milliseconds

1 2 3 4 5 6 7