Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/stats/pull/
H A DIonMemoryUtil.java110 allocations.totalSizeInBytes += sizeInBytes; in parseProcessIonHeapSizesFromDebugfs()
140 public long totalSizeInBytes; field in IonMemoryUtil.IonAllocations
151 return pid == that.pid && totalSizeInBytes == that.totalSizeInBytes in equals()
157 return Objects.hash(pid, totalSizeInBytes, count, maxSizeInBytes); in hashCode()
164 + ", totalSizeInBytes=" + totalSizeInBytes in toString()
H A DStatsPullAtomService.java2437 (int) (allocations.totalSizeInBytes / 1024), allocations.count,
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/stats/pull/
H A DIonMemoryUtilTest.java149 private static IonAllocations createIonAllocations(int pid, long totalSizeInBytes, int count, in createIonAllocations() argument
153 allocations.totalSizeInBytes = totalSizeInBytes; in createIonAllocations()