Home | History | Annotate | Download | only in runtime

Lines Matching defs:node

509     // The root of the stack trie is a dummy node so that we don't have to maintain
615 StackTrieNode* node = trie_node_i;
616 method_size = node->GetMethodSize();
617 uint32_t count = node->GetCount();
618 uint32_t dexpc = node->GetDexPC();
621 StackTrieNode* current = node->GetParent();
898 // Create a dummy node for searching.
899 StackTrieNode* node = new StackTrieNode(method, dex_pc, 0, nullptr);
900 std::set<StackTrieNode*, StackTrieNodeComparator>::iterator i = children_.find(node);
901 delete node;