Searched refs:readRawByte (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/libs/protoutil/src/
H A DEncodedBuffer.cpp219 EncodedBuffer::readRawByte() function in class:android::util::EncodedBuffer
232 uint8_t byte = readRawByte();
245 val += (uint32_t)readRawByte() << i;
255 val += (uint64_t)readRawByte() << i;
H A DProtoOutputStream.cpp373 } while ((mBuffer.readRawByte() & 0x80) != 0);
424 while ((mBuffer.readRawByte() & 0x80) != 0) {}
/frameworks/base/core/java/android/util/proto/
H A DEncodedBuffer.java192 public byte readRawByte() { method in class:EncodedBuffer
214 final byte b = readRawByte();
230 return (readRawByte() & 0x0ff)
231 | ((readRawByte() & 0x0ff) << 8)
232 | ((readRawByte() & 0x0ff) << 16)
233 | ((readRawByte() & 0x0ff) << 24);
H A DProtoOutputStream.java2511 while ((mBuffer.readRawByte() & 0x80) != 0) {
2579 while ((mBuffer.readRawByte() & 0x80) != 0) { }
/frameworks/base/libs/protoutil/include/android/util/
H A DEncodedBuffer.h132 uint8_t readRawByte();
/frameworks/base/config/
H A Dboot-image-profile.txt6414 HPLandroid/util/proto/EncodedBuffer;->readRawByte()B
[all...]

Completed in 45 milliseconds