Lines Matching refs:AllChildContext
37 auto It = AllChildContext.find(Hash); in getChildContext()
38 if (It != AllChildContext.end()) in getChildContext()
50 for (auto &It : AllChildContext) { in getHottestChildContext()
72 std::map<uint64_t, ContextTrieNode> &AllChildContext = in moveContextSamples() local
74 assert(!AllChildContext.count(Hash) && "Node to remove must exist"); in moveContextSamples()
75 AllChildContext[Hash] = NodeToMove; in moveContextSamples()
76 ContextTrieNode &NewNode = AllChildContext[Hash]; in moveContextSamples()
110 AllChildContext.erase(Hash); in removeChildContext()
114 return AllChildContext; in getAllChildContext()
156 for (auto &It : AllChildContext) { in dumpNode()
181 auto It = AllChildContext.find(Hash); in getOrCreateChildContext()
182 if (It != AllChildContext.end()) { in getOrCreateChildContext()
191 AllChildContext[Hash] = ContextTrieNode(this, CalleeName, nullptr, CallSite); in getOrCreateChildContext()
192 return &AllChildContext[Hash]; in getOrCreateChildContext()