Lines Matching refs:depth
149 size_t depth = 0; in GetDepth() local
150 while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != NULL) { in GetDepth()
151 ++depth; in GetDepth()
153 return depth; in GetDepth()
2278 : StackVisitor(thread, NULL), depth(0) {} in GetStackDepth()
2284 ++depth; in GetStackDepth()
2288 size_t depth; in GetStackDepth() member
2293 return visitor.depth; in GetStackDepth()
4536 : StackVisitor(thread, NULL), record(record), depth(0) {} in AllocRecordStackVisitor()
4541 if (depth >= kMaxAllocRecordStackDepth) { in VisitFrame()
4546 record->StackElement(depth)->SetMethod(m); in VisitFrame()
4547 record->StackElement(depth)->SetDexPc(GetDexPc()); in VisitFrame()
4548 ++depth; in VisitFrame()
4555 for (; depth < kMaxAllocRecordStackDepth; ++depth) { in ~AllocRecordStackVisitor()
4556 record->StackElement(depth)->SetMethod(nullptr); in ~AllocRecordStackVisitor()
4557 record->StackElement(depth)->SetDexPc(0); in ~AllocRecordStackVisitor()
4562 size_t depth; member