Lines Matching defs:txBytes

68     private long[] txBytes;
79 public long txBytes;
87 public Entry(long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) {
88 this(IFACE_ALL, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets,
93 long txBytes, long txPackets, long operations) {
100 this.txBytes = txBytes;
106 return rxBytes < 0 || rxPackets < 0 || txBytes < 0 || txPackets < 0 || operations < 0;
110 return rxBytes == 0 && rxPackets == 0 && txBytes == 0 && txPackets == 0
117 this.txBytes += another.txBytes;
131 builder.append(" txBytes=").append(txBytes);
147 this.txBytes = new long[initialSize];
161 txBytes = parcel.createLongArray();
176 dest.writeLongArray(txBytes);
194 String iface, long rxBytes, long rxPackets, long txBytes, long txPackets) {
196 iface, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets, 0L);
201 long rxPackets, long txBytes, long txPackets, long operations) {
203 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
219 txBytes = Arrays.copyOf(txBytes, newLength);
230 txBytes[size] = entry.txBytes;
249 entry.txBytes = txBytes[i];
278 long txBytes, long txPackets, long operations) {
280 iface, uid, SET_DEFAULT, tag, rxBytes, rxPackets, txBytes, txPackets, operations);
284 long rxPackets, long txBytes, long txPackets, long operations) {
286 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
302 txBytes[i] += entry.txBytes;
410 return entry.rxBytes + entry.txBytes;
457 entry.txBytes = 0;
471 entry.txBytes += txBytes[i];
521 entry.txBytes = left.txBytes[i];
528 entry.txBytes = left.txBytes[i] - right.txBytes[j];
532 if (entry.rxBytes < 0 || entry.rxPackets < 0 || entry.txBytes < 0
539 entry.txBytes = Math.max(entry.txBytes, 0);
571 entry.txBytes = txBytes[i];
598 entry.txBytes = txBytes[i];
637 pw.print(" txBytes="); pw.print(txBytes[i]);