Lines Matching refs:logMsg

115     std::stringstream logMsg;  in getLogMessage()  local
117 logMsg << firstKey << firstValue; in getLogMessage()
120 logMsg << secondKey << secondValue; in getLogMessage()
122 return logMsg.str(); in getLogMessage()
406 std::string logMsg; in pushConcurrentUsageReport() local
407 logMsg = getLogMessage(" HW: ", peakHwAudioEncoderCount, " SW: ", peakSwAudioEncoderCount); in pushConcurrentUsageReport()
408 if (!logMsg.empty()) { in pushConcurrentUsageReport()
409 peakCodecLog << "AudioEnc[ " << logMsg << " ] "; in pushConcurrentUsageReport()
411 logMsg = getLogMessage(" HW: ", peakHwAudioDecoderCount, " SW: ", peakSwAudioDecoderCount); in pushConcurrentUsageReport()
412 if (!logMsg.empty()) { in pushConcurrentUsageReport()
413 peakCodecLog << "AudioDec[" << logMsg << " ] "; in pushConcurrentUsageReport()
415 logMsg = getLogMessage(" HW: ", peakHwVideoEncoderCount, " SW: ", peakSwVideoEncoderCount); in pushConcurrentUsageReport()
416 if (!logMsg.empty()) { in pushConcurrentUsageReport()
417 peakCodecLog << "VideoEnc[" << logMsg << " ] "; in pushConcurrentUsageReport()
419 logMsg = getLogMessage(" HW: ", peakHwVideoDecoderCount, " SW: ", peakSwVideoDecoderCount); in pushConcurrentUsageReport()
420 if (!logMsg.empty()) { in pushConcurrentUsageReport()
421 peakCodecLog << "VideoDec[" << logMsg << " ] "; in pushConcurrentUsageReport()
423 logMsg = getLogMessage(" HW: ", peakHwImageEncoderCount, " SW: ", peakSwImageEncoderCount); in pushConcurrentUsageReport()
424 if (!logMsg.empty()) { in pushConcurrentUsageReport()
425 peakCodecLog << "ImageEnc[" << logMsg << " ] "; in pushConcurrentUsageReport()
427 logMsg = getLogMessage(" HW: ", peakHwImageDecoderCount, " SW: ", peakSwImageDecoderCount); in pushConcurrentUsageReport()
428 if (!logMsg.empty()) { in pushConcurrentUsageReport()
429 peakCodecLog << "ImageDec[" << logMsg << " ] "; in pushConcurrentUsageReport()
741 std::string logMsg = getLogMessage(" Current Pixels: ", pixelCount.mCurrent, in getAppsPixelCount() local
743 if (!logMsg.empty()) { in getAppsPixelCount()
744 pixelInfo << " PID[" << pid << "]: {" << logMsg << " }\n"; in getAppsPixelCount()
765 std::string logMsg; in getCodecUsageMetrics() local
766 logMsg = getLogMessage(" HW: ", peakHwAudioEncoderCount, " SW: ", peakSwAudioEncoderCount); in getCodecUsageMetrics()
767 if (!logMsg.empty()) { in getCodecUsageMetrics()
768 usageMetrics << "AudioEnc[" << logMsg << " ] "; in getCodecUsageMetrics()
770 logMsg = getLogMessage(" HW: ", peakHwAudioDecoderCount, " SW: ", peakSwAudioDecoderCount); in getCodecUsageMetrics()
771 if (!logMsg.empty()) { in getCodecUsageMetrics()
772 usageMetrics << "AudioDec[" << logMsg << " ] "; in getCodecUsageMetrics()
774 logMsg = getLogMessage(" HW: ", peakHwVideoEncoderCount, " SW: ", peakSwVideoEncoderCount); in getCodecUsageMetrics()
775 if (!logMsg.empty()) { in getCodecUsageMetrics()
776 usageMetrics << "VideoEnc[" << logMsg << " ] "; in getCodecUsageMetrics()
778 logMsg = getLogMessage(" HW: ", peakHwVideoDecoderCount, " SW: ", peakSwVideoDecoderCount); in getCodecUsageMetrics()
779 if (!logMsg.empty()) { in getCodecUsageMetrics()
780 usageMetrics << "VideoDec[" << logMsg << " ] "; in getCodecUsageMetrics()
782 logMsg = getLogMessage(" HW: ", peakHwImageEncoderCount, " SW: ", peakSwImageEncoderCount); in getCodecUsageMetrics()
783 if (!logMsg.empty()) { in getCodecUsageMetrics()
784 usageMetrics << "ImageEnc[" << logMsg << " ] "; in getCodecUsageMetrics()
786 logMsg = getLogMessage(" HW: ", peakHwImageDecoderCount, " SW: ", peakSwImageDecoderCount); in getCodecUsageMetrics()
787 if (!logMsg.empty()) { in getCodecUsageMetrics()
788 usageMetrics << "ImageDec[" << logMsg << " ] "; in getCodecUsageMetrics()