OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:txBytes
(Results
1 - 9
of
9
) sorted by null
/frameworks/base/core/jni/
android_net_TrafficStats.cpp
51
uint64_t
txBytes
;
64
return stats->
txBytes
;
85
uint64_t rxBytes, rxPackets,
txBytes
, txPackets, tcpRxPackets, tcpTxPackets;
91
&rxPackets, &
txBytes
, &txPackets, &tcpRxPackets, &tcpTxPackets);
99
stats->
txBytes
+=
txBytes
;
129
uint64_t tag, rxBytes, rxPackets,
txBytes
, txPackets;
133
iface, &tag, &cur_uid, &set, &rxBytes, &rxPackets, &
txBytes
,
138
stats->
txBytes
+=
txBytes
;
[
all
...]
com_android_internal_net_NetworkStatsFactory.cpp
46
jfieldID
txBytes
;
59
int64_t
txBytes
;
84
&s.
txBytes
, &s.txPackets) == 9) {
114
ScopedLongArrayRW
txBytes
(env, env->NewLongArray(size));
115
if (
txBytes
.get() == NULL) return -1;
130
txBytes
[i] = lines[i].
txBytes
;
141
env->SetObjectField(stats, gNetworkStatsClassInfo.
txBytes
,
txBytes
.getJavaArray());
179
gNetworkStatsClassInfo.
txBytes
= env->GetFieldID(clazz, "txBytes", "[J")
[
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/
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
70
private long[]
txBytes
;
81
public long
txBytes
;
89
public Entry(long rxBytes, long rxPackets, long
txBytes
, long txPackets, long operations) {
90
this(IFACE_ALL, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets,
txBytes
, txPackets,
95
long
txBytes
, long txPackets, long operations) {
102
this.
txBytes
=
txBytes
;
108
return rxBytes < 0 || rxPackets < 0 ||
txBytes
< 0 || txPackets < 0 || operations < 0;
112
return rxBytes == 0 && rxPackets == 0 &&
txBytes
== 0 && txPackets == 0
119
this.
txBytes
+= another.txBytes
[
all
...]
NetworkStatsHistory.java
76
private long[]
txBytes
;
89
public long
txBytes
;
108
if ((fields & FIELD_TX_BYTES) != 0)
txBytes
= new long[initialSize];
126
txBytes
= readLongArray(in);
140
writeLongArray(out,
txBytes
, bucketCount);
154
txBytes
= readFullLongArray(in);
158
totalBytes = total(rxBytes) + total(
txBytes
);
169
txBytes
= readVarLongArray(in);
173
totalBytes = total(rxBytes) + total(
txBytes
);
182
|| rxPackets.length != bucketCount ||
txBytes
.length != bucketCoun
[
all
...]
/frameworks/base/services/java/com/android/server/net/
NetworkStatsCollection.java
185
entry.
txBytes
= historyEntry.
txBytes
;
205
noteRecordedHistory(history.getStart(), history.getEnd(), entry.rxBytes + entry.
txBytes
);
/packages/apps/Settings/src/com/android/settings/
RadioInfo.java
678
long
txBytes
= TrafficStats.getMobileTxBytes();
684
sent.setText(txPackets + " " + packets + ", " +
txBytes
+ " " + bytes);
[
all
...]
/prebuilts/devtools/tools/lib/
ddmuilib.jar
Completed in 189 milliseconds