Home
last modified time | relevance | path

Searched refs:mySrc (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/procstats/
DAssociationState.java304 SourceState mySrc = mSources.get(key); in add() local
305 if (mySrc == null) { in add()
306 mySrc = new SourceState(key); in add()
307 mSources.put(key, mySrc); in add()
309 mySrc.mCount += otherSrc.mCount; in add()
310 mySrc.mDuration += otherSrc.mDuration; in add()
311 mySrc.mActiveCount += otherSrc.mActiveCount; in add()
314 if (mySrc.mDurations != null) { in add()
318 mySrc.mDurations.addDurations(otherSrc.mDurations); in add()
320 mySrc.mDurations.addDuration(otherSrc.mActiveProcState, in add()
[all …]