Searched refs:rp (Results 1 – 2 of 2) sorted by relevance
/tools/tradefederation/core/prod-tests/src/com/android/framework/tests/ |
D | BandwidthUtils.java | 52 long rb = 0, rp = 0, tb = 0, tp = 0; in getSumOfUidStats() local 55 rp += stats.getRxPackets(); in getSumOfUidStats() 59 return new BandwidthStats(rb, rp, tb, tp); in getSumOfUidStats() 89 int rp = Integer.parseInt(parts[6]); in parseUidStats() local 94 iface, uid, rb, rp, tb, tp); in parseUidStats() 95 mUidStats.put(uid, new BandwidthStats(rb, rp, tb, tp)); in parseUidStats() 124 int rp = Integer.parseInt(parts[2]); in parseNetDevStats() local 127 CLog.v("net iface %s rb %d rp %d tb %d tp %d", iface, rb, rp, tb, tp); in parseNetDevStats() 128 mDevStats = new BandwidthStats(rb, rp, tb, tp); in parseNetDevStats()
|
/tools/tradefederation/core/src/com/android/tradefed/result/ |
D | BugreportCollector.java | 91 public Predicate(Relation rp, Freq fp, Noun n) throws IllegalArgumentException { in Predicate() argument 92 assertValidPredicate(rp, fp, n); in Predicate() 94 mSubPredicates.add(rp); in Predicate() 99 public Predicate(Relation rp, Freq fp, Noun fpN, Filter filterP, Noun filterPN) in Predicate() argument 101 mSubPredicates.add(rp); in Predicate() 109 public static void assertValidPredicate(Relation rp, Freq fp, Noun n) in assertValidPredicate() argument 111 if (rp == Relation.AT_START_OF) { in assertValidPredicate() 420 private static Predicate p(Relation rp, Freq fp, Noun n) throws IllegalArgumentException { in p() argument 421 return new Predicate(rp, fp, n); in p() 428 private static Predicate p(Relation rp, Freq fp, Noun fpN, Filter filterP, Noun filterPN) in p() argument [all …]
|