Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/app/procstats/
DProcessState.java172 ArrayMap<SourceKey, SourceState> mCommonSources; field in ProcessState
279 if (other.mCommonSources != null) { in add()
280 if (mCommonSources == null) { in add()
281 mCommonSources = new ArrayMap<>(); in add()
283 int size = other.mCommonSources.size(); in add()
285 final SourceKey key = other.mCommonSources.keyAt(i); in add()
286 SourceState state = mCommonSources.get(key); in add()
289 mCommonSources.put(key, state); in add()
291 state.add(other.mCommonSources.valueAt(i)); in add()
306 if (mCommonSources != null) { in resetSafely()
[all …]
DProcessStats.java2372 final ArrayMap<SourceKey, SourceState> sources = procState.mCommonSources; in dumpFilteredAssociationStatesProtoForProc()