Searched refs:randomLong (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java555 final long curStart = randomLong(r, start, end);
556 final long curEnd = curStart + randomLong(r, 0, (end - curStart) / 2);
558 entry.rxBytes = randomLong(r, 0, rxBytes);
559 entry.rxPackets = randomLong(r, 0, rxPackets);
560 entry.txBytes = randomLong(r, 0, txBytes);
561 entry.txPackets = randomLong(r, 0, txPackets);
562 entry.operations = randomLong(r, 0, operations);
574 public static long randomLong(Random r, long start, long end) { method in class:NetworkStatsHistory

Completed in 24 milliseconds