OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:countCell
(Results
1 - 4
of
4
) sorted by null
/libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java
402
int[]
countCell
= stackTraces.get(mutableStackTrace);
403
if (
countCell
== null) {
404
countCell
= new int[1];
409
hprofData.addStackTrace(stackTrace,
countCell
);
411
countCell
[0]++;
HprofData.java
337
int
countCell
[] = e.getValue();
338
int count =
countCell
[0];
384
public void addStackTrace(StackTrace stackTrace, int[]
countCell
) {
388
int[] old = stackTraces.put(stackTrace,
countCell
);
BinaryHprofReader.java
415
// to the first, so they will share a
countCell
.
416
int[]
countCell
= stackTraces.get(stackTrace);
417
if (
countCell
== null) {
459
int[]
countCell
= stackTraces.get(stackTrace);
461
if (
countCell
[0] != 0) {
465
+
countCell
[0]);
470
count +=
countCell
[0];
472
countCell
[0] = count;
/libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java
168
final int[]
countCell
= new int[] { 4 };
171
hprofData.addStackTrace(stackTrace,
countCell
);
180
hprofData.addStackTrace(stackTrace,
countCell
);
194
countCell
[0] += 42;
202
hprofData.addStackTrace(stackTrace,
countCell
);
Completed in 51 milliseconds