Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/am/
DMemoryStatUtil.java304 allocations.totalSizeInBytes += sizeInBytes; in parseProcessIonHeapSizesFromDebugfs()
362 public long totalSizeInBytes; field in MemoryStatUtil.IonAllocations
373 return pid == that.pid && totalSizeInBytes == that.totalSizeInBytes in equals()
379 return Objects.hash(pid, totalSizeInBytes, count, maxSizeInBytes); in hashCode()
386 + ", totalSizeInBytes=" + totalSizeInBytes in toString()
/frameworks/base/services/tests/servicestests/src/com/android/server/am/
DMemoryStatUtilTest.java403 private static IonAllocations createIonAllocations(int pid, long totalSizeInBytes, int count, in createIonAllocations() argument
407 allocations.totalSizeInBytes = totalSizeInBytes; in createIonAllocations()
/frameworks/base/services/core/java/com/android/server/stats/
DStatsCompanionService.java1284 e.writeInt((int) (allocations.totalSizeInBytes / 1024)); in pullProcessSystemIonHeapSize()