Home
last modified time | relevance | path

Searched refs:countCell (Results 1 – 4 of 4) sorted by relevance

/libcore/dalvik/src/main/java/dalvik/system/profiler/
DSamplingProfiler.java402 int[] countCell = stackTraces.get(mutableStackTrace); in recordStackTrace() local
403 if (countCell == null) { in recordStackTrace()
404 countCell = new int[1]; in recordStackTrace()
409 hprofData.addStackTrace(stackTrace, countCell); in recordStackTrace()
411 countCell[0]++; in recordStackTrace()
DBinaryHprofReader.java416 int[] countCell = stackTraces.get(stackTrace); in parseStackTrace() local
417 if (countCell == null) { in parseStackTrace()
459 int[] countCell = stackTraces.get(stackTrace); in parseCpuSamples() local
461 if (countCell[0] != 0) { in parseCpuSamples()
465 + countCell[0]); in parseCpuSamples()
470 count += countCell[0]; in parseCpuSamples()
472 countCell[0] = count; in parseCpuSamples()
DHprofData.java337 int countCell[] = e.getValue(); in getSamples() local
338 int count = countCell[0]; in getSamples()
384 public void addStackTrace(StackTrace stackTrace, int[] countCell) { in addStackTrace() argument
388 int[] old = stackTraces.put(stackTrace, countCell); in addStackTrace()
/libcore/dalvik/src/test/java/dalvik/system/profiler/
DSamplingProfilerTest.java168 final int[] countCell = new int[] { 4 }; in test_HprofData_addStackTrace() local
171 hprofData.addStackTrace(stackTrace, countCell); in test_HprofData_addStackTrace()
180 hprofData.addStackTrace(stackTrace, countCell); in test_HprofData_addStackTrace()
194 countCell[0] += 42; in test_HprofData_addStackTrace()
202 hprofData.addStackTrace(stackTrace, countCell); in test_HprofData_addStackTrace()