Searched refs:parseIonHeapSizeFromDebugfs (Results 1 – 3 of 3) sorted by relevance
18 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()
57 return parseIonHeapSizeFromDebugfs(readFile(DEBUG_SYSTEM_ION_HEAP_FILE)); in readSystemIonHeapSizeFromDebugfs()65 static long parseIonHeapSizeFromDebugfs(String contents) { in parseIonHeapSizeFromDebugfs() method in IonMemoryUtil
38731 HPLcom/android/server/stats/pull/IonMemoryUtil;->parseIonHeapSizeFromDebugfs(Ljava/lang/String;)J