Lines Matching refs:mCurrent
230 int appConcurrentCodecs = concurrentCodecs.mCurrent[codecBucket]; in notifyClientStarted()
240 pixelCount = it->second.mCurrent; in notifyClientStarted()
303 appConcurrentCodecs = found->second.mCurrent[codecBucket]; in notifyClientStopped()
309 pixelCount = it->second.mCurrent; in notifyClientStopped()
574 codecs.mCurrent[codecBucket] = 1; in increaseConcurrentCodecs()
579 found->second.mCurrent[codecBucket]++; in increaseConcurrentCodecs()
581 if (found->second.mPeak[codecBucket] < found->second.mCurrent[codecBucket]) { in increaseConcurrentCodecs()
582 found->second.mPeak[codecBucket] = found->second.mCurrent[codecBucket]; in increaseConcurrentCodecs()
625 if (found->second.mCurrent[codecBucket] > 0) { in decreaseConcurrentCodecs()
626 found->second.mCurrent[codecBucket]--; in decreaseConcurrentCodecs()
666 if (__builtin_add_overflow(found->second.mCurrent, pixels, &found->second.mCurrent)) { in increasePixelCount()
671 if (found->second.mPeak < found->second.mCurrent) { in increasePixelCount()
672 found->second.mPeak = found->second.mCurrent; in increasePixelCount()
688 if (found->second.mCurrent < pixels) { in decreasePixelCount()
689 found->second.mCurrent = 0; in decreasePixelCount()
691 if (__builtin_sub_overflow(found->second.mCurrent, pixels, &found->second.mCurrent)) { in decreasePixelCount()
711 return found->second.mCurrent; in getCurrentConcurrentPixelCount()
741 std::string logMsg = getLogMessage(" Current Pixels: ", pixelCount.mCurrent, in getAppsPixelCount()
803 info = getCodecUsageMetrics(codecMap.mCurrent); in getAppsCodecUsageMetrics()