Home | History | Annotate | Download | only in net

Lines Matching defs:txBytes

75     private long[] txBytes;
86 public long txBytes;
94 public Entry(long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) {
95 this(IFACE_ALL, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets,
100 long txBytes, long txPackets, long operations) {
107 this.txBytes = txBytes;
113 return rxBytes < 0 || rxPackets < 0 || txBytes < 0 || txPackets < 0 || operations < 0;
117 return rxBytes == 0 && rxPackets == 0 && txBytes == 0 && txPackets == 0
124 this.txBytes += another.txBytes;
138 builder.append(" txBytes=").append(txBytes);
149 && rxPackets == e.rxPackets && txBytes == e.txBytes
168 this.txBytes = new long[initialSize];
180 this.txBytes = EmptyArray.LONG;
196 txBytes = parcel.createLongArray();
212 dest.writeLongArray(txBytes);
230 String iface, long rxBytes, long rxPackets, long txBytes, long txPackets) {
232 iface, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets, 0L);
237 long rxPackets, long txBytes, long txPackets, long operations) {
239 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
255 txBytes = Arrays.copyOf(txBytes, newLength);
267 txBytes[size] = entry.txBytes;
286 entry.txBytes = txBytes[i];
319 long txBytes, long txPackets, long operations) {
321 iface, uid, SET_DEFAULT, tag, rxBytes, rxPackets, txBytes, txPackets, operations);
325 long rxPackets, long txBytes, long txPackets, long operations) {
327 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
343 txBytes[i] += entry.txBytes;
451 return entry.rxBytes + entry.txBytes;
498 entry.txBytes = 0;
512 entry.txBytes += txBytes[i];
597 entry.txBytes = left.txBytes[i];
604 entry.txBytes = left.txBytes[i] - right.txBytes[j];
608 if (entry.rxBytes < 0 || entry.rxPackets < 0 || entry.txBytes < 0
615 entry.txBytes = Math.max(entry.txBytes, 0);
647 entry.txBytes = txBytes[i];
674 entry.txBytes = txBytes[i];
713 pw.print(" txBytes="); pw.print(txBytes[i]);