Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/stats/pull/
H A DIonMemoryUtilTest.java18 import static com.android.server.stats.pull.IonMemoryUtil.parseIonHeapSizeFromDebugfs;
102 assertThat(parseIonHeapSizeFromDebugfs("")).isEqualTo(0); in testParseIonHeapSizeFromDebugfs_emptyContents()
107 assertThat(parseIonHeapSizeFromDebugfs("<<no-value>>")).isEqualTo(0); in testParseIonHeapSizeFromDebugfs_invalidValue()
109 assertThat(parseIonHeapSizeFromDebugfs("\ntotal 12345678901234567890\n")).isEqualTo(0); in testParseIonHeapSizeFromDebugfs_invalidValue()
114 assertThat(parseIonHeapSizeFromDebugfs(DEBUG_SYSTEM_ION_HEAP_CONTENTS)) in testParseIonHeapSizeFromDebugfs_correctValue()
117 assertThat(parseIonHeapSizeFromDebugfs(DEBUG_SYSTEM_ION_HEAP_CONTENTS_SARGO)) in testParseIonHeapSizeFromDebugfs_correctValue()
/aosp12/frameworks/base/services/core/java/com/android/server/stats/pull/
H A DIonMemoryUtil.java57 return parseIonHeapSizeFromDebugfs(readFile(DEBUG_SYSTEM_ION_HEAP_FILE)); in readSystemIonHeapSizeFromDebugfs()
65 static long parseIonHeapSizeFromDebugfs(String contents) { in parseIonHeapSizeFromDebugfs() method in IonMemoryUtil
/aosp12/frameworks/base/services/
H A Dart-profile38731 HPLcom/android/server/stats/pull/IonMemoryUtil;->parseIonHeapSizeFromDebugfs(Ljava/lang/String;)J