OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full: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 683 milliseconds