HomeSort by relevance Sort by last modified time
    Searched defs:hprofData (Results 1 - 4 of 4) sorted by null

  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofBinaryToAscii.java 61 HprofData hprofData;
63 hprofData = readHprof(file);
69 return write(hprofData);
72 HprofData hprofData;
74 hprofData = readSnapshot(file);
80 return write(hprofData);
101 * Read and return an HprofData from a vanilla binary hprof file.
103 private static HprofData readHprof(File file) throws IOException
    [all...]
SamplingProfiler.java 62 private final Map<HprofData.StackTrace, int[]> stackTraces
63 = new HashMap<HprofData.StackTrace, int[]>();
68 private final HprofData hprofData = new HprofData(stackTraces);
123 private final HprofData.StackTrace mutableStackTrace = new HprofData.StackTrace();
160 hprofData.setFlags(BinaryHprof.ControlSettings.CPU_SAMPLING.bitmask);
161 hprofData.setDepth(depth);
284 hprofData.setStartMillis(System.currentTimeMillis())
    [all...]
BinaryHprofReader.java 58 private final Map<HprofData.StackTrace, int[]> stackTraces
59 = new HashMap<HprofData.StackTrace, int[]>();
61 private final HprofData hprofData = new HprofData(stackTraces);
67 private final Map<Integer, HprofData.StackTrace> idToStackTrace
68 = new HashMap<Integer, HprofData.StackTrace>();
103 public HprofData getHprofData() {
105 return hprofData;
151 hprofData.setStartMillis(time)
    [all...]
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 22 import dalvik.system.profiler.HprofData.Sample;
23 import dalvik.system.profiler.HprofData.StackTrace;
24 import dalvik.system.profiler.HprofData.ThreadEvent;
25 import dalvik.system.profiler.HprofData;
85 new HprofData(null);
93 HprofData hprofData = new HprofData(stackTraces);
94 test_HprofData(hprofData, true);
99 HprofData hprofData = new HprofData(stackTraces)
    [all...]

Completed in 101 milliseconds