Home
last modified time | relevance | path

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

/art/runtime/
Dprofiler.cc485 stack_trie_root_ = nullptr; in ProfileSampleResults()
514 if (stack_trie_root_ == nullptr) { in PutStack()
517 stack_trie_root_ = new StackTrieNode(); in PutStack()
520 StackTrieNode* current = stack_trie_root_; in PutStack()
553 if (current != stack_trie_root_ && current->GetCount() == 0) { in PutStack()
703 if (stack_trie_root_ != nullptr) { in Clear()
704 stack_trie_root_->DeleteChildren(); in Clear()
705 delete stack_trie_root_; in Clear()
706 stack_trie_root_ = nullptr; in Clear()
Dprofiler.h131 StackTrieNode* stack_trie_root_; // Root of the trie that stores sampled stack information. variable