Lines Matching refs:mDepth
33 mDepth(0), in ProtoOutputStream()
50 mDepth = 0; in clear()
261 mDepth++; in start()
266 (bool)(fieldId & FIELD_COUNT_REPEATED), mDepth, mObjectId, sizePos); in start()
275 mDepth = UINT32_C(-1); // make depth invalid in end()
280 if (depth != (mDepth & 0x01ff)) { in end()
281 ALOGE("Unexpected depth: %" PRIu32 ", should be %" PRIu32, depth, mDepth); in end()
282 mDepth = UINT32_C(-1); // make depth invalid in end()
285 mDepth--; in end()
314 if (mDepth != 0) { in compact()
315 …ALOGE("Can't compact when depth(%" PRIu32 ") is not zero. Missing or extra calls to end.", mDepth); in compact()