Home | History | Annotate | Download | only in net

Lines Matching refs:operations

86     private long[] operations;
99 public long operations;
118 if ((fields & FIELD_OPERATIONS) != 0) operations = new long[initialSize];
136 operations = readLongArray(in);
150 writeLongArray(out, operations, bucketCount);
164 operations = new long[bucketStart.length];
179 operations = readVarLongArray(in);
191 || txPackets.length != bucketCount || operations.length != bucketCount) {
205 writeVarLongArray(out, operations, bucketCount);
284 entry.operations = getLong(operations, i, UNKNOWN);
299 setLong(operations, i, entry.operations);
325 long operations = entry.operations;
357 final long fracOperations = operations * overlap / duration;
364 addLong(this.operations, i, fracOperations); operations -= fracOperations;
399 entry.operations = getLong(input.operations, i, 0L);
436 if (operations != null) operations = Arrays.copyOf(operations, newLength);
450 if (operations != null) System.arraycopy(operations, index, operations, dstPos, length);
459 setLong(operations, index, 0L);
473 if (operations != null) operations = EmptyArray.LONG;
501 if (operations != null) operations = Arrays.copyOfRange(operations, i, length);
529 entry.operations = operations != null ? 0 : UNKNOWN;
559 if (operations != null) entry.operations += operations[i] * overlap / bucketDuration;
577 final long operations = rxBytes / 2048;
579 generateRandom(start, end, rxBytes, rxPackets, txBytes, txPackets, operations, r);
587 long txPackets, long operations, Random r) {
593 || operations > 32) {
601 entry.operations = randomLong(r, 0, operations);
607 operations -= entry.operations;
646 if (operations != null) { pw.print(" op="); pw.print(operations[i]); }
665 if (operations != null) { pw.print(operations[i]); } else { pw.print("*"); }
683 writeToProto(proto, NetworkStatsHistoryBucketProto.OPERATIONS, operations, i);