HomeSort by relevance Sort by last modified time
    Searched full:hprof (Results 51 - 75 of 277) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.2.0-alpha1/
perflib-25.2.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.2.0-alpha3/
perflib-25.2.0-alpha3.jar 
  /frameworks/base/tools/preload2/
Android.mk 8 # To connect to devices (and take hprof dumps).
11 # To process hprof dumps.
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
IToolsLocator.java 37 * Queries the location of hprof-conv
38 * @return A full OS path to the location of hprof-conv.
  /frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/
Hprof.java 17 package com.android.preload.classdataretrieval.hprof;
36 public class Hprof implements ClassDataRetriever {
41 synchronized(Hprof.class) {
54 * Return a map of class names to class-loader names derived from the hprof dump.
159 return File.createTempFile("ddms", ".hprof");
202 public Hprof(int timeout) {
208 File hprofLocalFile = Hprof.doHprof(client, timeout);
GeneralHprofDumpHandler.java 17 package com.android.preload.classdataretrieval.hprof;
  /art/tools/ahat/src/
OverviewHandler.java 32 public OverviewHandler(AhatSnapshot snapshot, File hprof) {
34 mHprof = hprof;
46 doc.description(DocString.text("hprof file"), DocString.text(mHprof.toString()));
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));
  /art/tools/ahat/
Android.mk 61 # Determine the location of the test-dump.jar and test-dump.hprof files.
65 AHAT_TEST_DUMP_HPROF := $(intermediates.COMMON)/test-dump.hprof
67 # Run ahat-test-dump.jar to generate test-dump.hprof
83 java -Dahat.test.dump.hprof=$(PRIVATE_AHAT_TEST_DUMP_HPROF) -jar $(PRIVATE_AHAT_TEST_JAR)
  /dalvik/tools/hprof-conv/
Android.mk 20 LOCAL_MODULE := hprof-conv
  /art/test/130-hprof/src/
Main.java 39 final String DEX_FILE = System.getenv("DEX_LOCATION") + "/130-hprof-ex.jar";
60 // Run hprof-conv on it.
122 // TODO: Somehow check contents of hprof file.
129 return new File(new File(libDir.getParentFile(), "bin"), "hprof-conv");
177 return File.createTempFile("test-130-hprof", "dump");
185 return File.createTempFile("test-130-hprof", "conv");
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.1.2/
perflib-25.1.2.jar 
  /art/tools/ahat/test-dump/
Main.java 34 // found in the hprof dump by searching for the instance of the DumpedStuff
70 System.err.println("Dumping hprof data to " + file);
  /art/runtime/
gc_root.h 49 kRootFinalizing, // used for HPROF's conversion to HprofHeapTag
51 kRootReferenceCleanup, // used for HPROF's conversion to HprofHeapTag
57 // Only used by hprof. thread_id_ and type_ are only used by hprof.
  /build/target/product/
runtime_libart.mk 36 hprof-conv \
  /development/build/
product_sdk.mk 42 hprof-conv \
sdk-windows-x86.atree 46 rm platform-tools/hprof-conv
47 bin/hprof-conv.exe strip platform-tools/hprof-conv.exe
  /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");
  /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);
  /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.

Completed in 338 milliseconds

1 23 4 5 6 7 8 91011>>