Searched refs:next_sample_cache_ (Results 1 – 2 of 2) sorted by relevance
193 std::unordered_map<pid_t, std::unique_ptr<SampleRecord>> next_sample_cache_; member in ReportLib264 auto it = next_sample_cache_.find(r->tid_data.tid); in GetNextSample()265 if (it == next_sample_cache_.end()) { in GetNextSample()266 next_sample_cache_[r->tid_data.tid].reset(r); in GetNextSample()298 uint64_t next_time = std::max(next_sample_cache_[r.tid_data.tid]->time_data.time, in SetCurrentSample()
298 auto it = next_sample_cache_.find(tid); in ReportCmdProcessSampleRecord()299 if (it == next_sample_cache_.end()) { in ReportCmdProcessSampleRecord()300 next_sample_cache_[tid] = r; in ReportCmdProcessSampleRecord()310 auto it = next_sample_cache_.find(r.tid_data.tid); in GetPeriod()311 CHECK(it != next_sample_cache_.end()); in GetPeriod()320 std::unordered_map<pid_t, std::shared_ptr<SampleRecord>> next_sample_cache_; member in __anon235bfe9f0111::TimestampSampleTreeBuilder