Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/com/android/internal/app/procstats/
H A DProcessState.java349 final int numOfSources = mCommonSources != null ? mCommonSources.size() : 0; in writeToParcel() local
350 out.writeInt(numOfSources); in writeToParcel()
351 for (int i = 0; i < numOfSources; i++) { in writeToParcel()
388 final int numOfSources = in.readInt(); in readFromParcel() local
389 if (numOfSources > 0) { in readFromParcel()
390 mCommonSources = new ArrayMap<>(numOfSources); in readFromParcel()
391 for (int i = 0; i < numOfSources; i++) { in readFromParcel()
H A DAssociationState.java820 final int numOfSources = inSources.size(); in createSortedAssociations() local
821 ArrayList<Pair<SourceKey, SourceDumpContainer>> sources = new ArrayList<>(numOfSources); in createSortedAssociations()
822 for (int isrc = 0; isrc < numOfSources; isrc++) { in createSortedAssociations()