Lines Matching refs:depth
1457 bool Init(int depth) in Init() argument
1463 hs.NewHandle(class_linker->AllocObjectArray<mirror::Object>(self_, depth + 1))); in Init()
1467 mirror::IntArray* dex_pc_trace = mirror::IntArray::Alloc(self_, depth); in Init()
1474 method_trace->Set<kTransactionActive>(depth, dex_pc_trace); in Init()
1530 int32_t depth = count_visitor.GetDepth(); in CreateInternalStackTrace() local
1537 if (!build_trace_visitor.Init(depth)) { in CreateInternalStackTrace()
1558 int32_t depth = soa.Decode<mirror::ObjectArray<mirror::Object>*>(internal)->GetLength() - 1; in InternalStackTraceToStackTraceElementArray() local
1570 depth = std::min(depth, traces_length); in InternalStackTraceToStackTraceElementArray()
1574 class_linker->AllocStackTraceElementArray(soa.Self(), depth); in InternalStackTraceToStackTraceElementArray()
1582 *stack_depth = depth; in InternalStackTraceToStackTraceElementArray()
1585 for (int32_t i = 0; i < depth; ++i) { in InternalStackTraceToStackTraceElementArray()
1599 mirror::IntArray* pc_trace = down_cast<mirror::IntArray*>(method_trace->Get(depth)); in InternalStackTraceToStackTraceElementArray()