Lines Matching defs:txBytes

69     private long[] txBytes;
80 public long txBytes;
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,
94 long txBytes, long txPackets, long operations) {
101 this.txBytes = txBytes;
107 return rxBytes < 0 || rxPackets < 0 || txBytes < 0 || txPackets < 0 || operations < 0;
111 return rxBytes == 0 && rxPackets == 0 && txBytes == 0 && txPackets == 0
118 this.txBytes += another.txBytes;
132 builder.append(" txBytes=").append(txBytes);
148 this.txBytes = new long[initialSize];
162 txBytes = parcel.createLongArray();
177 dest.writeLongArray(txBytes);
195 String iface, long rxBytes, long rxPackets, long txBytes, long txPackets) {
197 iface, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets, 0L);
202 long rxPackets, long txBytes, long txPackets, long operations) {
204 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
220 txBytes = Arrays.copyOf(txBytes, newLength);
231 txBytes[size] = entry.txBytes;
250 entry.txBytes = txBytes[i];
279 long txBytes, long txPackets, long operations) {
281 iface, uid, SET_DEFAULT, tag, rxBytes, rxPackets, txBytes, txPackets, operations);
285 long rxPackets, long txBytes, long txPackets, long operations) {
287 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
303 txBytes[i] += entry.txBytes;
411 return entry.rxBytes + entry.txBytes;
458 entry.txBytes = 0;
472 entry.txBytes += txBytes[i];
522 entry.txBytes = left.txBytes[i];
529 entry.txBytes = left.txBytes[i] - right.txBytes[j];
533 if (entry.rxBytes < 0 || entry.rxPackets < 0 || entry.txBytes < 0
540 entry.txBytes = Math.max(entry.txBytes, 0);
572 entry.txBytes = txBytes[i];
599 entry.txBytes = txBytes[i];
638 pw.print(" txBytes="); pw.print(txBytes[i]);