Home
last modified time | relevance | path

Searched refs:parents (Results 1 – 2 of 2) sorted by relevance

/art/tools/dmtracedump/
Dtracedump.cc174 struct TimedMethod* parents[2]; /* 0=normal, 1=recursive */ member
309 method->parents[0] = nullptr; in initMethodEntry()
310 method->parents[1] = nullptr; in initMethodEntry()
1188 TimedMethod* parents = child->parents[childIsRecursive]; in addInclusiveTime() local
1189 for (pTimed = parents; pTimed; pTimed = pTimed->next) { in addInclusiveTime()
1204 pTimed->next = parents; in addInclusiveTime()
1205 child->parents[childIsRecursive] = pTimed; in addInclusiveTime()
1538 printInclusiveMethod(method, method->parents[0], numCalls, 0); in printInclusiveProfile()
1539 if (method->parents[1]) { in printInclusiveProfile()
1541 printInclusiveMethod(method, method->parents[1], numCalls, kIsRecursive); in printInclusiveProfile()
/art/openjdkjvmti/
Dti_redefine.cc1702 auto parents = [](art::ObjPtr<art::mirror::Class> c) REQUIRES_SHARED(art::Locks::mutator_lock_) { in CompareClasses()
1710 return parents(l.Ptr()) < parents(r.Ptr()); in CompareClasses()