Searched defs:hprof (Results 1 - 6 of 6) sorted by relevance

/art/runtime/hprof/
H A Dhprof.h22 namespace hprof { namespace in namespace:art
26 } // namespace hprof
H A Dhprof.cc18 * Preparation and completion of hprof data generation. The output is
25 #include "hprof.h"
73 namespace hprof { namespace in namespace:art
441 LOG(INFO) << "hprof: heap dump \"" << filename_ << "\" starting...";
480 LOG(INFO) << "hprof: heap dump completed (" << PrettySize(RoundUp(overall_size, KB))
668 // Note of warning: hprof-conv hard-codes the size of identifiers to 4.
1087 // running during the hprof dumping process.
1105 // These roots are actually live from the object. Avoid marking them as roots in hprof to make
1191 // "$class$" so the class fields are visible in hprof dumps. For tools to account for that
1610 Hprof hprof(filenam
[all...]
/art/tools/ahat/src/main/com/android/ahat/
H A DMain.java61 private static AhatSnapshot loadHeapDump(File hprof, ProguardMap map) { argument
62 System.out.println("Processing '" + hprof + "' ...");
64 return Parser.parseHeapDump(hprof, map);
66 System.err.println("Unable to load '" + hprof + "':");
69 System.err.println("'" + hprof + "' does not appear to be a valid Java heap dump:");
93 File hprof = null;
126 if (hprof != null) {
131 hprof = new File(args[i]);
135 if (hprof == null) {
141 // Launch the server before parsing the hprof fil
[all...]
H A DOverviewHandler.java31 public OverviewHandler(AhatSnapshot snapshot, File hprof, File basehprof) { argument
33 mHprof = hprof;
46 doc.description(DocString.text("hprof file"), DocString.text(mHprof.toString()));
48 doc.description(DocString.text("baseline hprof file"), DocString.text(mBaseHprof.toString()));
/art/tools/ahat/src/test/com/android/ahat/
H A DTestDump.java105 * An IOException is thrown if there is a failure reading the hprof files or
121 ByteBuffer hprof = dataBufferFromResource(mHprofResource);
122 mSnapshot = Parser.parseHeapDump(hprof, map);
235 * An IOException is thrown if there is an error reading the test dump hprof
241 return getTestDump("test-dump.hprof", "test-dump-base.hprof", "test-dump.map");
246 * @param hprof - The string resouce name of the hprof file.
247 * @param base - The string resouce name of the baseline hprof, may be null.
249 * An IOException is thrown if there is an error reading the test dump hprof
254 getTestDump(String hprof, String base, String map) argument
[all...]
/art/tools/ahat/src/main/com/android/ahat/heapdump/
H A DParser.java66 * @param hprof the hprof file to parse
72 public static AhatSnapshot parseHeapDump(File hprof, ProguardMap map) argument
75 return parseHeapDump(new HprofBuffer(hprof), map);
104 * @param hprof the bytes of the hprof file to parse
110 public static AhatSnapshot parseHeapDump(ByteBuffer hprof, ProguardMap map) argument
113 return parseHeapDump(new HprofBuffer(hprof), map);
119 private static AhatSnapshot parseHeapDump(HprofBuffer hprof, ProguardMap map) argument
121 // Read, and mostly ignore, the hprof heade
[all...]

Completed in 170 milliseconds