Home | History | Annotate | Download | only in net

Lines Matching defs:rxBytes

73     private long[] rxBytes;
84 public long rxBytes;
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,
99 public Entry(String iface, int uid, int set, int tag, long rxBytes, long rxPackets,
105 this.rxBytes = rxBytes;
113 return rxBytes < 0 || rxPackets < 0 || txBytes < 0 || txPackets < 0 || operations < 0;
117 return rxBytes == 0 && rxPackets == 0 && txBytes == 0 && txPackets == 0
122 this.rxBytes += another.rxBytes;
136 builder.append(" rxBytes=").append(rxBytes);
148 return uid == e.uid && set == e.set && tag == e.tag && rxBytes == e.rxBytes
166 this.rxBytes = new long[initialSize];
178 this.rxBytes = EmptyArray.LONG;
194 rxBytes = parcel.createLongArray();
210 dest.writeLongArray(rxBytes);
230 String iface, long rxBytes, long rxPackets, long txBytes, long txPackets) {
232 iface, UID_ALL, SET_DEFAULT, TAG_NONE, rxBytes, rxPackets, txBytes, txPackets, 0L);
236 public NetworkStats addValues(String iface, int uid, int set, int tag, long rxBytes,
239 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
253 rxBytes = Arrays.copyOf(rxBytes, newLength);
265 rxBytes[size] = entry.rxBytes;
284 entry.rxBytes = rxBytes[i];
318 public NetworkStats combineValues(String iface, int uid, int tag, long rxBytes, long rxPackets,
321 iface, uid, SET_DEFAULT, tag, rxBytes, rxPackets, txBytes, txPackets, operations);
324 public NetworkStats combineValues(String iface, int uid, int set, int tag, long rxBytes,
327 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
341 rxBytes[i] += entry.rxBytes;
451 return entry.rxBytes + entry.txBytes;
496 entry.rxBytes = 0;
510 entry.rxBytes += rxBytes[i];
595 entry.rxBytes = left.rxBytes[i];
602 entry.rxBytes = left.rxBytes[i] - right.rxBytes[j];
608 if (entry.rxBytes < 0 || entry.rxPackets < 0 || entry.txBytes < 0
613 entry.rxBytes = Math.max(entry.rxBytes, 0);
645 entry.rxBytes = rxBytes[i];
672 entry.rxBytes = rxBytes[i];
711 pw.print(" rxBytes="); pw.print(rxBytes[i]);