OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stack_trie_root_
(Results
1 - 2
of
2
) sorted by null
/art/runtime/
profiler.cc
479
stack_trie_root_
= nullptr;
508
if (
stack_trie_root_
== nullptr) {
511
stack_trie_root_
= new StackTrieNode();
514
StackTrieNode* current =
stack_trie_root_
;
547
if (current !=
stack_trie_root_
&& current->GetCount() == 0) {
697
if (
stack_trie_root_
!= nullptr) {
698
stack_trie_root_
->DeleteChildren();
699
delete
stack_trie_root_
;
700
stack_trie_root_
= nullptr;
profiler.h
131
StackTrieNode*
stack_trie_root_
; // Root of the trie that stores sampled stack information.
member in class:art::ProfileSampleResults
Completed in 123 milliseconds