Home | History | Annotate | Download | only in runtime

Lines Matching refs:kMaxAllocRecordStackDepth

59 static const size_t kMaxAllocRecordStackDepth = 16;  // Max 255.
75 AllocRecordStackTraceElement stack[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
79 while (depth < kMaxAllocRecordStackDepth && stack[depth].method != NULL) {
3483 << kMaxAllocRecordStackDepth << " frames, taking "
3503 if (depth >= kMaxAllocRecordStackDepth) {
3517 for (; depth < kMaxAllocRecordStackDepth; ++depth) {
3588 for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) {
3671 * can be (kMaxAllocRecordStackDepth * gAllocRecordMax) unique strings in
3707 for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) {