OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stackTraces
(Results
1 - 4
of
4
) sorted by null
/libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofData.java
272
private final Map<HprofData.StackTrace, int[]>
stackTraces
;
274
public HprofData(Map<StackTrace, int[]>
stackTraces
) {
275
if (
stackTraces
== null) {
276
throw new NullPointerException("
stackTraces
== null");
278
this.
stackTraces
=
stackTraces
;
334
Set<Sample> samples = new HashSet<Sample>(
stackTraces
.size());
335
for (Entry<StackTrace, int[]> e :
stackTraces
.entrySet()) {
388
int[] old =
stackTraces
.put(stackTrace, countCell);
SamplingProfiler.java
62
private final Map<HprofData.StackTrace, int[]>
stackTraces
68
private final HprofData hprofData = new HprofData(
stackTraces
);
118
* #
stackTraces
stackTraces
} map without allocating a {@code
402
int[] countCell =
stackTraces
.get(mutableStackTrace);
BinaryHprofReader.java
58
private final Map<HprofData.StackTrace, int[]>
stackTraces
61
private final HprofData hprofData = new HprofData(
stackTraces
);
416
int[] countCell =
stackTraces
.get(stackTrace);
459
int[] countCell =
stackTraces
.get(stackTrace);
/libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java
92
Map<StackTrace, int[]>
stackTraces
= new HashMap<StackTrace, int[]>();
93
HprofData hprofData = new HprofData(
stackTraces
);
98
Map<StackTrace, int[]>
stackTraces
= new HashMap<StackTrace, int[]>();
99
HprofData hprofData = new HprofData(
stackTraces
);
107
Map<StackTrace, int[]>
stackTraces
= new HashMap<StackTrace, int[]>();
108
HprofData hprofData = new HprofData(
stackTraces
);
118
Map<StackTrace, int[]>
stackTraces
= new HashMap<StackTrace, int[]>();
119
HprofData hprofData = new HprofData(
stackTraces
);
156
Map<StackTrace, int[]>
stackTraces
= new HashMap<StackTrace, int[]>();
157
HprofData hprofData = new HprofData(
stackTraces
);
[
all
...]
Completed in 34 milliseconds