Lines Matching defs:httpPerfInfo
77 void EventReport::ProcessHttpPerfHiSysevent(const HttpPerfInfo &httpPerfInfo)
86 if (httpPerfInfo.IsSuccess() && httpPerfInfo.totalTime != 0) {
88 eventInfo.totalTime += httpPerfInfo.totalTime;
89 eventInfo.totalRate += httpPerfInfo.size / httpPerfInfo.totalTime;
90 eventInfo.totalDnsTime += httpPerfInfo.dnsTime;
91 eventInfo.totalTlsTime += httpPerfInfo.tlsTime;
92 eventInfo.totalFirstRecvTime += httpPerfInfo.firstRecvTime;
93 eventInfo.totalTcpTime += httpPerfInfo.tcpTime;
94 auto result = versionMap.emplace(httpPerfInfo.version, 1);