Searched refs:inline_stacks_ (Results 1 – 2 of 2) sorted by relevance
180 rare_data_->inline_stacks_ = std::move(inline_stacks); in SetInlineStacks()191 auto it = rare_data_->inline_stacks_.find(inlining_id); in GetInlineStack()192 return it != rare_data_->inline_stacks_.end() ? &it->second : nullptr; in GetInlineStack()225 for (const auto& inline_stack_pair : rare_data_->inline_stacks_) { in EstimatedSize()230 rare_data_->inline_stacks_.size() * in EstimatedSize()231 (sizeof(decltype(rare_data_->inline_stacks_)::key_type) + in EstimatedSize()232 sizeof(decltype(rare_data_->inline_stacks_)::value_type)); in EstimatedSize()299 if (!rare_data_->inline_stacks_.empty()) { in print()301 for (auto it = rare_data_->inline_stacks_.begin(); in print()302 it != rare_data_->inline_stacks_.end(); it++) { in print()
205 std::unordered_map<int, std::vector<CodeEntryAndLineNumber>> inline_stacks_; member