/art/runtime/hprof/ |
hprof.cc | 18 * Preparation and completion of hprof data generation. The output is 25 #include "hprof.h" 67 namespace hprof { namespace in namespace:art 417 class Hprof : public SingleRootVisitor { 419 Hprof(const char* output_filename, int fd, bool direct_to_ddms) 423 LOG(INFO) << "hprof: heap dump \"" << filename_ << "\" starting..."; 461 LOG(INFO) << "hprof: heap dump completed (" << PrettySize(RoundUp(overall_size, KB)) 473 reinterpret_cast<Hprof*>(arg)->DumpHeapObject(obj); 646 // Note of warning: hprof-conv hard-codes the size of identifiers to 4. 897 DISALLOW_COPY_AND_ASSIGN(Hprof); [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
java_heap_profiler.py | 63 output_file = input_file.replace('.aprof', '.hprof') 65 'hprof-conv',
|
/frameworks/base/docs/html/guide/topics/manifest/ |
instrumentation-element.jd | 9 android:<a href="#hprof">handleProfiling</a>=["true" | "false"] 30 <dt><a name="hprof"></a>{@code android:handleProfiling}</dt>
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
BinaryHprof.java | 25 * Hprof binary format related constants shared between the 35 * Prefix of valid magic values from the start of a binary hprof file.
|
SamplingProfiler.java | 41 * results in hprof format to the standard output. 94 * Real hprof output examples don't start the thread and trace 97 * identifiers when manual searching hprof output. 138 * similar to the hprof option of the same name. Any stack deeper 320 * Returns the hprof data accumulated by the profiler since it was 327 throw new IllegalStateException("cannot access hprof data while sampling");
|
HprofData.java | 31 * binary hprof-style output using {@link AsciiHprofWriter} or 363 // hold true in the binary hprof BinaryHprofWriter 364 // produces, it is not true of hprof files created
|
AsciiHprofWriter.java | 29 * AsciiHprofWriter produces hprof compatible text output for use with
|
/frameworks/base/tools/preload2/src/com/android/preload/ |
Main.java | 33 import com.android.preload.classdataretrieval.hprof.Hprof; 59 * Hprof timeout. Two minutes. 139 return new Hprof(HPROF_TIMEOUT_MILLIS);
|
DeviceUtils.java | 21 import com.android.preload.classdataretrieval.hprof.Hprof; 38 Hprof.init();
|
/development/build/ |
sdk-windows-x86.atree | 46 rm platform-tools/hprof-conv 47 bin/hprof-conv.exe strip platform-tools/hprof-conv.exe
|
/art/runtime/native/ |
dalvik_system_VMDebug.cc | 34 #include "hprof/hprof.h" 50 "hprof-heap-dump", 51 "hprof-heap-dump-streaming", 200 * Cause "hprof" data to be dumped. We can throw an IOException if an 232 hprof::DumpHeap(filename.c_str(), fd, false); 236 hprof::DumpHeap("[DDMS]", -1, true);
|
/libcore/dalvik/src/main/java/dalvik/system/ |
VMDebug.java | 289 * Dumps "hprof" data to the specified file. This may cause a GC. 293 * @param filename Full pathname of output file (e.g. "/sdcard/dump.hprof"). 295 * HPROF support. 306 * Collects "hprof" heap data and sends it to DDMS. This may cause a GC. 309 * HPROF support. 314 * Dumps "hprof" heap data to a file, by name or descriptor.
|
/art/tools/ahat/src/ |
AhatSnapshot.java | 69 * Create an AhatSnapshot from an hprof file. 71 public static AhatSnapshot fromHprof(File hprof) throws IOException { 72 Snapshot snapshot = Snapshot.createSnapshot(new MemoryMappedFileBuffer(hprof));
|
InstanceUtils.java | 28 * Utilities for extracting information from hprof instances. 41 * Read the byte[] value from an hprof Instance. 65 * Read the string value from an hprof Instance. 73 * Read the string value from an hprof Instance.
|
Value.java | 24 * Class to render an hprof value to a DocString.
|
/frameworks/base/core/java/android/ddm/ |
DdmHandleHeap.java | 152 * the entire contents of the file and return them, but hprof dump 169 Log.w("ddm-heap", "hprof dumps not supported in this VM"); 201 failMsg = "hprof dumps not supported in this VM";
|
/external/owasp/sanitizer/ |
Makefile | 153 profile: out/java.hprof.txt 154 out/java.hprof.txt: out/tests.tstamp 155 java -cp ${TEST_CLASSPATH}:out/classes -agentlib:hprof=cpu=times,format=a,file=out/java.hprof.txt,lineno=y,doe=y org.owasp.html.Benchmark benchmark-data/Yahoo\!.html s macro
|
/external/vogar/src/vogar/ |
JavaVm.java | 48 vmCommand.add("-agentlib:hprof="
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
DeviceView.java | 125 public final static String ACTION_SAVE = "hprof.save"; //$NON-NLS-1$ 126 public final static String ACTION_OPEN = "hprof.open"; //$NON-NLS-1$ 128 public final static String DOT_HPROF = ".hprof"; //$NON-NLS-1$ 150 // this will make sure the dump hprof button is 153 // an hprof file 167 // get the sync service to pull the HPROF file 220 // this will make sure the dump hprof button is 223 // an hprof file 262 // make a temp file to convert the hprof into something [all...] |
/art/tools/ahat/ |
README.txt | 21 * Include ahat version and hprof file in the menu at the top of the page? 45 * That we can open a hprof without an 'app' heap and show a tabulation of
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/ |
binary_dependencies.json | 140 "hprof-conv": { 146 "download_path": "../bin/linux/x86_64/hprof-conv"
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/ |
PreferenceInitializer.java | 117 // When obtaining hprof files from the device, default to opening the file 118 // only if there is a registered content type for the hprof extension.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/ |
PdtPlugin.java | 95 * Returns the location of hprof-conv or <code>null</code> if unknown. 101 return devTreeBin + "hprof-conv"; //$NON-NLS-1$
|
/dalvik/tools/hprof-conv/ |
HprofConv.c | 18 * Strip Android-specific records out of hprof data, back-converting from 20 * Android hprof data to be handled by widely-available tools (like "jhat"). 277 * Hprof stuff 597 * Filter an hprof data file. 618 fprintf(stderr, "ERROR: HPROF file already in 1.0.2 format.\n"); 620 fprintf(stderr, "ERROR: expecting HPROF file format 1.0.3\n"); 743 fprintf(stderr, "Usage: hprof-conf [-z] infile outfile\n");
|
/development/build/tools/ |
windows_sdk.mk | 41 hprof-conv \
|