OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:randomLong
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/net/
NetworkStatsHistory.java
507
final long curStart =
randomLong
(r, start, end);
508
final long curEnd = curStart +
randomLong
(r, 0, (end - curStart) / 2);
510
entry.rxBytes =
randomLong
(r, 0, rxBytes);
511
entry.rxPackets =
randomLong
(r, 0, rxPackets);
512
entry.txBytes =
randomLong
(r, 0, txBytes);
513
entry.txPackets =
randomLong
(r, 0, txPackets);
514
entry.operations =
randomLong
(r, 0, operations);
526
public static long
randomLong
(Random r, long start, long end) {
/frameworks/base/services/java/com/android/server/net/
NetworkStatsService.java
35
import static android.net.NetworkStatsHistory.
randomLong
;
[
all
...]
Completed in 327 milliseconds