Home | History | Annotate | Download | only in net

Lines Matching full:operations

72     private long[] operations;
83 public long operations;
89 public Entry(long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) {
91 operations);
95 long txBytes, long txPackets, long operations) {
104 this.operations = operations;
108 return rxBytes < 0 || rxPackets < 0 || txBytes < 0 || txPackets < 0 || operations < 0;
113 && operations == 0;
121 this.operations += another.operations;
135 builder.append(" operations=").append(operations);
145 && txPackets == e.txPackets && operations == e.operations
163 this.operations = new long[initialSize];
177 operations = parcel.createLongArray();
192 dest.writeLongArray(operations);
215 long rxPackets, long txBytes, long txPackets, long operations) {
217 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
235 operations = Arrays.copyOf(operations, newLength);
246 operations[size] = entry.operations;
265 entry.operations = operations[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));
318 operations[i] += entry.operations;
373 * Splice in {@link #operations} from the given {@link NetworkStats} based
381 operations[i] = 0;
383 operations[i] = stats.operations[j];
473 entry.operations = 0;
487 entry.operations += operations[i];
537 entry.operations = left.operations[i];
544 entry.operations = left.operations[i] - right.operations[j];
547 || entry.txPackets < 0 || entry.operations < 0) {
555 entry.operations = Math.max(entry.operations, 0);
576 entry.operations = 0L;
614 entry.operations = operations[i];
653 pw.print(" operations="); pw.println(operations[i]);