Searched defs:child (Results 1 - 5 of 5) sorted by relevance

/art/test/063-process-manager/src/
H A DMain.java7 System.out.println("\nspawning child #" + i);
8 child();
15 static private void child() throws Exception { method in class:Main
16 System.out.println("spawning child");
22 System.out.println("child died");
/art/runtime/
H A Dprofiler.h64 void AppendChild(StackTrieNode* child) { children_.insert(child); } argument
H A Dprofiler.cc538 StackTrieNode* child = current->FindChild(method_ref, dex_pc); local
539 if (child != nullptr) {
540 current = child;
912 for (auto &child : children_) {
913 if (child != nullptr) {
914 child->DeleteChildren();
915 delete child;
/art/runtime/verifier/
H A Dreg_type_cache.cc429 const RegType& RegTypeCache::FromUnresolvedSuperClass(const RegType& child) { argument
438 if (unresolved_super_child_id == child.GetId()) {
443 return AddEntry(new (&arena_) UnresolvedSuperClass(child.GetId(), this, entries_.size()));
/art/tools/dmtracedump/
H A Dtracedump.cc1129 /* This routine adds the given time to the parent and child methods.
1130 * This is called when the child routine exits, after the child has
1132 * duration of the child routine, including time spent in called routines.
1134 void addInclusiveTime(MethodEntry* parent, MethodEntry* child, uint64_t elapsedTime) { argument
1137 if (strcmp(child->className, debugClassName) == 0)
1141 int32_t childIsRecursive = (child->recursiveEntries > 0);
1144 if (child->recursiveEntries == 0) {
1145 child->elapsedInclusive += elapsedTime;
1146 } else if (child
1414 checkThreshold(MethodEntry* parent, MethodEntry* child) argument
[all...]

Completed in 411 milliseconds