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

/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java577 final long curStart = randomLong(r, start, end);
578 final long curEnd = curStart + randomLong(r, 0, (end - curStart) / 2);
580 entry.rxBytes = randomLong(r, 0, rxBytes);
581 entry.rxPackets = randomLong(r, 0, rxPackets);
582 entry.txBytes = randomLong(r, 0, txBytes);
583 entry.txPackets = randomLong(r, 0, txPackets);
584 entry.operations = randomLong(r, 0, operations);
596 public static long randomLong(Random r, long start, long end) { method in class:NetworkStatsHistory

Completed in 81 milliseconds