Lines Matching defs:depth
1420 bool Init(int depth)
1426 hs.NewHandle(class_linker->AllocObjectArray<mirror::Object>(self_, depth + 1)));
1430 mirror::IntArray* dex_pc_trace = mirror::IntArray::Alloc(self_, depth);
1437 method_trace->Set<kTransactionActive>(depth, dex_pc_trace);
1490 // Compute depth of stack
1493 int32_t depth = count_visitor.GetDepth();
1500 if (!build_trace_visitor.Init(depth)) {
1520 // Decode the internal stack trace into the depth, method trace and PC trace
1521 int32_t depth = soa.Decode<mirror::ObjectArray<mirror::Object>*>(internal)->GetLength() - 1;
1533 depth = std::min(depth, traces_length);
1537 class_linker->AllocStackTraceElementArray(soa.Self(), depth);
1545 *stack_depth = depth;
1548 for (int32_t i = 0; i < depth; ++i) {
1562 mirror::IntArray* pc_trace = down_cast<mirror::IntArray*>(method_trace->Get(depth));