Home
last modified time | relevance | path

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

/art/runtime/
Dprofiler.cc476 stack_trie_root_ = nullptr; in ProfileSampleResults()
505 if (stack_trie_root_ == nullptr) { in PutStack()
508 stack_trie_root_ = new StackTrieNode(); in PutStack()
511 StackTrieNode* current = stack_trie_root_; in PutStack()
544 if (current != stack_trie_root_ && current->GetCount() == 0) { in PutStack()
694 if (stack_trie_root_ != nullptr) { in Clear()
695 stack_trie_root_->DeleteChildren(); in Clear()
696 delete stack_trie_root_; in Clear()
697 stack_trie_root_ = nullptr; in Clear()
Dprofiler.h131 StackTrieNode* stack_trie_root_; // Root of the trie that stores sampled stack information. variable