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

  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprofWriter.java 179 int samplesCount = samples.size();
180 if (samplesCount == 0) {
183 writeRecordHeader(BinaryHprof.Tag.CPU_SAMPLES, 0, 4 + 4 + (samplesCount * (4 + 4)));
185 out.writeInt(samplesCount);
BinaryHprofReader.java 431 int samplesCount = in.readInt();
434 System.out.println("\tsamplesCount=" + samplesCount);
436 int expectedLength = 4 + 4 + (samplesCount * (4 + 4));
444 for (int i = 0; i < samplesCount; i++) {

Completed in 126 milliseconds