HomeSort by relevance Sort by last modified time
    Searched refs:childRawSize (Results 1 - 2 of 2) sorted by null

  /frameworks/base/libs/protoutil/src/
ProtoOutputStream.cpp 251 * Get the location of the childRawSize (the first 32 bit size field) in this object.
296 int childRawSize = mBuffer.wp()->pos() - sizePos - 8;
303 if (childRawSize > 0) {
304 mBuffer.editRawFixed32(sizePos, -childRawSize);
363 int childRawSize, childEncodedSize;
380 childRawSize = (int)mBuffer.readRawFixed32();
383 if (childRawSize >= 0 && childRawSize == childEncodedSize) {
384 mBuffer.ep()->move(childRawSize);
385 } else if (childRawSize < 0 && childEncodedSize == -1)
    [all...]
  /frameworks/base/core/java/android/util/proto/
ProtoOutputStream.java 80 * buffer as a fixed 32 bit int (called childRawSize), not a variable length
84 * write the negative of childRawSize, as a sentinel that we need to
    [all...]

Completed in 132 milliseconds