Home
last modified time | relevance | path

Searched refs:hprof (Results 1 – 12 of 12) sorted by relevance

/art/tools/ahat/src/main/com/android/ahat/heapdump/
DParser.java72 public static AhatSnapshot parseHeapDump(File hprof, ProguardMap map) in parseHeapDump() argument
75 return parseHeapDump(new HprofBuffer(hprof), map); in parseHeapDump()
110 public static AhatSnapshot parseHeapDump(ByteBuffer hprof, ProguardMap map) in parseHeapDump() argument
113 return parseHeapDump(new HprofBuffer(hprof), map); in parseHeapDump()
119 private static AhatSnapshot parseHeapDump(HprofBuffer hprof, ProguardMap map) in parseHeapDump() argument
125 while ((b = hprof.getU1()) != 0) { in parseHeapDump()
129 int idSize = hprof.getU4(); in parseHeapDump()
133 int hightime = hprof.getU4(); in parseHeapDump()
134 int lowtime = hprof.getU4(); in parseHeapDump()
157 while (hprof.hasRemaining()) { in parseHeapDump()
[all …]
/art/tools/ahat/etc/
DREADME.txt1 L.hprof
2 A version of the test-dump hprof generated on Android L, with one of the
5 O.hprof
6 A version of the test-dump hprof generated on Android O.
8 RI.hprof
9 A version of the test-dump hprof generated on the reference implementation.
/art/tools/ahat/src/main/com/android/ahat/
DMain.java61 private static AhatSnapshot loadHeapDump(File hprof, ProguardMap map) { in loadHeapDump() argument
62 System.out.println("Processing '" + hprof + "' ..."); in loadHeapDump()
64 return Parser.parseHeapDump(hprof, map); in loadHeapDump()
66 System.err.println("Unable to load '" + hprof + "':"); in loadHeapDump()
69 System.err.println("'" + hprof + "' does not appear to be a valid Java heap dump:"); in loadHeapDump()
93 File hprof = null; in main() local
126 if (hprof != null) { in main()
131 hprof = new File(args[i]); in main()
135 if (hprof == null) { in main()
155 AhatSnapshot ahat = loadHeapDump(hprof, map); in main()
[all …]
DOverviewHandler.java31 public OverviewHandler(AhatSnapshot snapshot, File hprof, File basehprof) { in OverviewHandler() argument
33 mHprof = hprof; in OverviewHandler()
/art/tools/ahat/src/test/com/android/ahat/
DTestDump.java121 ByteBuffer hprof = dataBufferFromResource(mHprofResource); in load() local
122 mSnapshot = Parser.parseHeapDump(hprof, map); in load()
254 public static synchronized TestDump getTestDump(String hprof, String base, String map) in getTestDump() argument
257 if (Objects.equals(loaded.mHprofResource, hprof) in getTestDump()
267 TestDump dump = new TestDump(hprof, base, map); in getTestDump()
/art/tools/ahat/
DAndroid.mk107 AHAT_TEST_DUMP_HPROF := $(intermediates.COMMON)/test-dump.hprof
108 AHAT_TEST_DUMP_BASE_HPROF := $(intermediates.COMMON)/test-dump-base.hprof
156 $(LOCAL_PATH)/etc/L.hprof \
157 $(LOCAL_PATH)/etc/O.hprof \
158 $(LOCAL_PATH)/etc/RI.hprof
DREADME.txt24 * Include ahat version and hprof file in the menu at the top of the page?
42 * That we can open a hprof without an 'app' heap and show a tabulation of
/art/runtime/hprof/
Dhprof.h22 namespace hprof {
Dhprof.cc73 namespace hprof { namespace
1610 Hprof hprof(filename, fd, direct_to_ddms); in DumpHeap() local
1611 hprof.Dump(); in DumpHeap()
/art/test/
DAndroid.run-test.mk68 $(HOST_OUT_EXECUTABLES)/hprof-conv \
/art/runtime/
DAndroid.bp92 "hprof/hprof.cc",
/art/
DAndroid.mk401 hprof-conv \