HomeSort by relevance Sort by last modified time
    Searched refs:txBytes (Results 1 - 24 of 24) 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 47 jfieldID txBytes;
59 int64_t txBytes;
209 &s.txBytes, &s.txPackets) == 6) {
246 ScopedLongArrayRW txBytes(env, get_long_array(env, stats,
247 gNetworkStatsClassInfo.txBytes, size, grow));
248 if (txBytes.get() == NULL) return -1;
265 txBytes[i] = lines[i].txBytes;
278 env->SetObjectField(stats, gNetworkStatsClassInfo.txBytes, txBytes.getJavaArray())
    [all...]