Lines Matching refs:mDepth
37 mDepth(0), in ProtoOutputStream()
54 mDepth = 0; in clear()
265 mDepth++; in start()
270 (bool)(fieldId & FIELD_COUNT_REPEATED), mDepth, mObjectId, sizePos); in start()
279 mDepth = UINT32_C(-1); // make depth invalid in end()
284 if (depth != (mDepth & 0x01ff)) { in end()
285 ALOGE("Unexpected depth: %" PRIu32 ", should be %" PRIu32, depth, mDepth); in end()
286 mDepth = UINT32_C(-1); // make depth invalid in end()
289 mDepth--; in end()
318 if (mDepth != 0) { in compact()
319 …ALOGE("Can't compact when depth(%" PRIu32 ") is not zero. Missing or extra calls to end.", mDepth); in compact()