Home | History | Annotate | Download | only in net

Lines Matching defs:txBytes

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;
133 builder.append(" txBytes=").append(txBytes);
144 && rxPackets == e.rxPackets && txBytes == e.txBytes
161 this.txBytes = new long[initialSize];
175 txBytes = parcel.createLongArray();
190 dest.writeLongArray(txBytes);
208 String iface, long rxBytes, long rxPackets, long txBytes, long txPackets) {
210 iface, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets, 0L);
215 long rxPackets, long txBytes, long txPackets, long operations) {
217 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
233 txBytes = Arrays.copyOf(txBytes, newLength);
244 txBytes[size] = entry.txBytes;
263 entry.txBytes = txBytes[i];
292 long txBytes, long txPackets, long operations) {
294 iface, uid, SET_DEFAULT, tag, rxBytes, rxPackets, txBytes, txPackets, operations);
298 long rxPackets, long txBytes, long txPackets, long operations) {
300 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
316 txBytes[i] += entry.txBytes;
424 return entry.rxBytes + entry.txBytes;
471 entry.txBytes = 0;
485 entry.txBytes += txBytes[i];
535 entry.txBytes = left.txBytes[i];
542 entry.txBytes = left.txBytes[i] - right.txBytes[j];
546 if (entry.rxBytes < 0 || entry.rxPackets < 0 || entry.txBytes < 0
553 entry.txBytes = Math.max(entry.txBytes, 0);
585 entry.txBytes = txBytes[i];
612 entry.txBytes = txBytes[i];
651 pw.print(" txBytes="); pw.print(txBytes[i]);