Lines Matching defs:rxBytes

67     private long[] rxBytes;
78 public long rxBytes;
88 public Entry(long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) {
89 this(IFACE_ALL, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets,
93 public Entry(String iface, int uid, int set, int tag, long rxBytes, long rxPackets,
99 this.rxBytes = rxBytes;
107 return rxBytes < 0 || rxPackets < 0 || txBytes < 0 || txPackets < 0 || operations < 0;
111 return rxBytes == 0 && rxPackets == 0 && txBytes == 0 && txPackets == 0
116 this.rxBytes += another.rxBytes;
130 builder.append(" rxBytes=").append(rxBytes);
146 this.rxBytes = new long[initialSize];
160 rxBytes = parcel.createLongArray();
175 dest.writeLongArray(rxBytes);
195 String iface, long rxBytes, long rxPackets, long txBytes, long txPackets) {
197 iface, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets, 0L);
201 public NetworkStats addValues(String iface, int uid, int set, int tag, long rxBytes,
204 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
218 rxBytes = Arrays.copyOf(rxBytes, newLength);
229 rxBytes[size] = entry.rxBytes;
248 entry.rxBytes = rxBytes[i];
278 public NetworkStats combineValues(String iface, int uid, int tag, long rxBytes, long rxPackets,
281 iface, uid, SET_DEFAULT, tag, rxBytes, rxPackets, txBytes, txPackets, operations);
284 public NetworkStats combineValues(String iface, int uid, int set, int tag, long rxBytes,
287 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
301 rxBytes[i] += entry.rxBytes;
411 return entry.rxBytes + entry.txBytes;
456 entry.rxBytes = 0;
470 entry.rxBytes += rxBytes[i];
520 entry.rxBytes = left.rxBytes[i];
527 entry.rxBytes = left.rxBytes[i] - right.rxBytes[j];
533 if (entry.rxBytes < 0 || entry.rxPackets < 0 || entry.txBytes < 0
538 entry.rxBytes = Math.max(entry.rxBytes, 0);
570 entry.rxBytes = rxBytes[i];
597 entry.rxBytes = rxBytes[i];
636 pw.print(" rxBytes="); pw.print(rxBytes[i]);