Home
last modified time | relevance | path

Searched refs:child (Results 1 – 10 of 10) sorted by relevance

/art/test/063-process-manager/
Dexpected.txt3 spawning child #1
4 spawning child
6 child died
9 spawning child #2
10 spawning child
12 child died
Dinfo.txt1 Test that spawning a child process and then reaping it (a) works and (b)
/art/compiler/dex/
Dpost_opt_passes.cc73 for (BasicBlock* child = child_iter.Next(); child != nullptr; child = child_iter.Next()) { in Start() local
74 child->predecessors.push_back(bb->id); in Start()
Dmir_optimization.cc905 for (BasicBlock* child = iter.Next(); child != nullptr; child = iter.Next()) { in CombineBlocks() local
906 child->UpdatePredecessor(bb_next->id, bb->id); in CombineBlocks()
/art/test/063-process-manager/src/
DMain.java8 child(); in main()
15 static private void child() throws Exception { in child() method in Main
/art/test/084-class-init/
Dexpected.txt9 Fields (child thread): 111222333444
/art/runtime/
Dprofiler.cc529 StackTrieNode* child = current->FindChild(method_ref, dex_pc); in PutStack() local
530 if (child != nullptr) { in PutStack()
531 current = child; in PutStack()
903 for (auto &child : children_) { in DeleteChildren() local
904 if (child != nullptr) { in DeleteChildren()
905 child->DeleteChildren(); in DeleteChildren()
906 delete child; in DeleteChildren()
Dprofiler.h64 void AppendChild(StackTrieNode* child) { children_.insert(child); } in AppendChild() argument
/art/runtime/verifier/
Dreg_type_cache.cc379 const RegType& RegTypeCache::FromUnresolvedSuperClass(const RegType& child) { in FromUnresolvedSuperClass() argument
388 if (unresolved_super_child_id == child.GetId()) { in FromUnresolvedSuperClass()
393 RegType* entry = new UnresolvedSuperClass(child.GetId(), this, entries_.size()); in FromUnresolvedSuperClass()
Dreg_type_cache.h69 const RegType& FromUnresolvedSuperClass(const RegType& child)