Home | History | Annotate | Download | only in net

Lines Matching refs:operations

70     private long[] operations;
81 public long operations;
87 public Entry(long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) {
89 operations);
93 long txBytes, long txPackets, long operations) {
102 this.operations = operations;
106 return rxBytes < 0 || rxPackets < 0 || txBytes < 0 || txPackets < 0 || operations < 0;
111 && operations == 0;
119 this.operations += another.operations;
133 builder.append(" operations=").append(operations);
149 this.operations = new long[initialSize];
163 operations = parcel.createLongArray();
178 dest.writeLongArray(operations);
201 long rxPackets, long txBytes, long txPackets, long operations) {
203 iface, uid, set, tag, rxBytes, rxPackets, txBytes, txPackets, operations));
221 operations = Arrays.copyOf(operations, newLength);
232 operations[size] = entry.operations;
251 entry.operations = operations[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));
304 operations[i] += entry.operations;
359 * Splice in {@link #operations} from the given {@link NetworkStats} based
367 operations[i] = 0;
369 operations[i] = stats.operations[j];
459 entry.operations = 0;
473 entry.operations += operations[i];
523 entry.operations = left.operations[i];
530 entry.operations = left.operations[i] - right.operations[j];
533 || entry.txPackets < 0 || entry.operations < 0) {
541 entry.operations = Math.max(entry.operations, 0);
562 entry.operations = 0L;
600 entry.operations = operations[i];
639 pw.print(" operations="); pw.println(operations[i]);