Lines Matching refs:stats_
950 for (index = 0; index < stats_.size(); index++) { in HandleDumpStats()
951 if (stats_[index].pid == request->pid) { in HandleDumpStats()
964 stats_.emplace_back(stats); in HandleDumpStats()
966 stats_[index].requestTime = request->requestTime; in HandleDumpStats()
967 stats_[index].dumpCatcherFinishTime = request->dumpCatcherFinishTime; in HandleDumpStats()
968 stats_[index].callerElfName = GetElfName(request); in HandleDumpStats()
969 stats_[index].callerProcessName = request->callerProcess; in HandleDumpStats()
970 stats_[index].result = request->result; in HandleDumpStats()
971 stats_[index].summary = request->summary; in HandleDumpStats()
972 ReportDumpStats(stats_[index]); in HandleDumpStats()
973 stats_.erase(stats_.begin() + index); in HandleDumpStats()
992 for (auto it = stats_.begin(); it != stats_.end();) { in RemoveTimeoutDumpStats()
995 it = stats_.erase(it); in RemoveTimeoutDumpStats()