Home
last modified time | relevance | path

Searched refs:children (Results 1 – 3 of 3) sorted by relevance

/art/tools/ahat/src/main/com/android/ahat/
DSiteHandler.java52 List<Site> children = new ArrayList<Site>(site.getChildren()); in handle() local
54 if (children.isEmpty()) { in handle()
57 Collections.sort(children, Sort.defaultSiteCompare(mSnapshot)); in handle()
80 HeapTable.render(doc, query, SITES_CALLED_ID, table, mSnapshot, children); in handle()
/art/tools/dmtracedump/
Dtracedump.cc175 struct TimedMethod* children[2]; /* 0=normal, 1=recursive */ member
311 method->children[0] = nullptr; in initMethodEntry()
312 method->children[1] = nullptr; in initMethodEntry()
1167 TimedMethod* children = parent->children[parentIsRecursive]; in addInclusiveTime() local
1168 for (pTimed = children; pTimed; pTimed = pTimed->next) { in addInclusiveTime()
1183 pTimed->next = children; in addInclusiveTime()
1184 parent->children[parentIsRecursive] = pTimed; in addInclusiveTime()
1434 for (TimedMethod* child = method->children[0]; child; child = child->next) { in createLabels()
1447 for (TimedMethod* child = method->children[0]; child; child = child->next) { in createLinks()
1560 printInclusiveMethod(method, method->children[0], 0, 0); in printInclusiveProfile()
[all …]
/art/perfetto_hprof/
Dperfetto_hprof.cc547 const std::vector<art::mirror::Object*>& children = p.second; in DumpPerfetto() local
551 for (art::mirror::Object* obj : children) { in DumpPerfetto()