Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/app/procstats/
DAssociationState.java379 void add(SourceState otherSrc) { in add() argument
380 mCount += otherSrc.mCount; in add()
381 mDuration += otherSrc.mDuration; in add()
382 mActiveCount += otherSrc.mActiveCount; in add()
383 if (otherSrc.mActiveDuration != 0 || otherSrc.mActiveDurations != null) { in add()
388 if (otherSrc.mActiveDurations != null) { in add()
389 mActiveDurations.addDurations(otherSrc.mActiveDurations); in add()
391 mActiveDurations.addDuration(otherSrc.mActiveProcState, in add()
392 otherSrc.mActiveDuration); in add()
394 } else if (otherSrc.mActiveDurations != null) { in add()
[all …]