OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:statsEntry
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
DataIdleTest.java
101
Entry
statsEntry
= stats.getValues(i, null);
104
String labelTemplate = String.format("%s_%d_%d_%d",
statsEntry
.iface,
statsEntry
.uid,
105
statsEntry
.tag,
statsEntry
.set) + "_%s";
106
result.putLong(String.format(labelTemplate, "rxBytes"),
statsEntry
.rxBytes);
107
result.putLong(String.format(labelTemplate, "txBytes"),
statsEntry
.txBytes);
109
rxPackets +=
statsEntry
.rxPackets;
110
rxBytes +=
statsEntry
.rxBytes;
111
txPackets +=
statsEntry
.txPackets
[
all
...]
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
BandwidthTest.java
313
Entry
statsEntry
= stats.getValues(i, null);
315
if (
statsEntry
.tag != 0) {
319
if (
statsEntry
.uid != uid) {
322
if (totalStats == null ||
statsEntry
.set == NetworkStats.SET_ALL) {
323
totalStats =
statsEntry
;
325
totalStats.rxBytes +=
statsEntry
.rxBytes;
326
totalStats.txBytes +=
statsEntry
.txBytes;
Completed in 1282 milliseconds