HomeSort by relevance Sort by last modified time
    Searched defs:txBytes (Results 1 - 9 of 9) sorted by null

  /frameworks/base/core/jni/
android_net_TrafficStats.cpp 52 uint64_t txBytes;
65 return stats->txBytes;
86 uint64_t rxBytes, rxPackets, txBytes, txPackets, tcpRxPackets, tcpTxPackets;
92 &rxPackets, &txBytes, &txPackets, &tcpRxPackets, &tcpTxPackets);
100 stats->txBytes += txBytes;
130 uint64_t tag, rxBytes, rxPackets, txBytes, txPackets;
137 &txBytes, &txPackets) == 9) {
141 stats->txBytes += txBytes;
    [all...]
com_android_internal_net_NetworkStatsFactory.cpp 48 jfieldID txBytes;
60 int64_t txBytes;
210 &s.txBytes, &s.txPackets) == 6) {
247 ScopedLongArrayRW txBytes(env, get_long_array(env, stats,
248 gNetworkStatsClassInfo.txBytes, size, grow));
249 if (txBytes.get() == NULL) return -1;
266 txBytes[i] = lines[i].txBytes;
279 env->SetObjectField(stats, gNetworkStatsClassInfo.txBytes, txBytes.getJavaArray())
    [all...]
  /frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
DataIdleTest.java 96 long txBytes = 0;
107 result.putLong(String.format(labelTemplate, "txBytes"), statsEntry.txBytes);
112 txBytes += statsEntry.txBytes;
115 result.putLong("Total tx Bytes", txBytes);
  /system/netd/server/
BandwidthController.h 31 txBytes(-1), txPackets(-1) {};
37 txBytes(txB), txPackets(txP) {};
43 int64_t txBytes, txPackets;
  /frameworks/base/core/java/android/net/
NetworkStats.java 84 private long[] txBytes;
95 public long txBytes;
103 public Entry(long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) {
104 this(IFACE_ALL, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets,
109 long txBytes, long txPackets, long operations) {
116 this.txBytes = txBytes;
122 return rxBytes < 0 || rxPackets < 0 || txBytes < 0 || txPackets < 0 || operations < 0;
126 return rxBytes == 0 && rxPackets == 0 && txBytes == 0 && txPackets == 0
133 this.txBytes += another.txBytes
    [all...]
NetworkStatsHistory.java 78 private long[] txBytes;
91 public long txBytes;
110 if ((fields & FIELD_TX_BYTES) != 0) txBytes = new long[initialSize];
128 txBytes = readLongArray(in);
142 writeLongArray(out, txBytes, bucketCount);
156 txBytes = readFullLongArray(in);
160 totalBytes = total(rxBytes) + total(txBytes);
171 txBytes = readVarLongArray(in);
175 totalBytes = total(rxBytes) + total(txBytes);
184 || rxPackets.length != bucketCount || txBytes.length != bucketCoun
    [all...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsCollection.java 222 entry.txBytes = historyEntry.txBytes;
242 noteRecordedHistory(history.getStart(), history.getEnd(), entry.rxBytes + entry.txBytes);
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 697 long txBytes = TrafficStats.getMobileTxBytes();
703 sent.setText(txPackets + " " + packets + ", " + txBytes + " " + bytes);
    [all...]
  /prebuilts/devtools/tools/lib/
ddmuilib.jar 

Completed in 209 milliseconds