Searched refs:identSet (Results 1 – 4 of 4) sorted by relevance
/packages/modules/Connectivity/tests/unit/java/com/android/server/net/ |
D | NetworkStatsObserversTest.java | 300 NetworkIdentitySet identSet = new NetworkIdentitySet(); in makeTestIdentSet() local 301 identSet.add(new NetworkIdentity( in makeTestIdentSet() 305 return identSet; in makeTestIdentSet() 319 NetworkIdentitySet identSet = makeTestIdentSet(); in testUpdateStats_initialSample_doesNotNotify() local 320 mActiveIfaces.put(TEST_IFACE, identSet); in testUpdateStats_initialSample_doesNotNotify() 343 NetworkIdentitySet identSet = makeTestIdentSet(); in testUpdateStats_belowThreshold_doesNotNotify() local 344 mActiveIfaces.put(TEST_IFACE, identSet); in testUpdateStats_belowThreshold_doesNotNotify() 373 NetworkIdentitySet identSet = makeTestIdentSet(); in testUpdateStats_deviceAccess_notifies() local 374 mActiveIfaces.put(TEST_IFACE, identSet); in testUpdateStats_deviceAccess_notifies() 404 NetworkIdentitySet identSet = makeTestIdentSet(); in testUpdateStats_defaultAccess_notifiesSameUid() local [all …]
|
/packages/modules/Connectivity/tests/unit/java/android/net/ |
D | NetworkStatsRecorderTest.java | 151 final NetworkIdentitySet identSet = new NetworkIdentitySet(); in testFileReadingMetrics() local 152 identSet.add(new NetworkIdentity.Builder().build()); in testFileReadingMetrics() 156 collection.recordData(identSet, TEST_UID1, SET_DEFAULT, TAG_NONE, 0, 60, entry); in testFileReadingMetrics() 157 collection.recordData(identSet, TEST_UID2, SET_DEFAULT, TAG_NONE, 0, 60, entry); in testFileReadingMetrics() 158 collection.recordData(identSet, TEST_UID2, SET_FOREGROUND, TAG_NONE, 30, 60, entry); in testFileReadingMetrics()
|
D | NetworkStatsCollectionTest.java | 250 final NetworkIdentitySet identSet = new NetworkIdentitySet(); in testAccessLevels() local 251 identSet.add(new NetworkIdentity(TYPE_MOBILE, TelephonyManager.NETWORK_TYPE_UNKNOWN, in testAccessLevels() 260 collection.recordData(identSet, myUid, SET_DEFAULT, TAG_NONE, 0, 60 * MINUTE_IN_MILLIS, in testAccessLevels() 265 collection.recordData(identSet, otherUidInSameUser, SET_DEFAULT, TAG_NONE, 0, in testAccessLevels() 270 collection.recordData(identSet, Process.SYSTEM_UID, SET_DEFAULT, TAG_NONE, 0, in testAccessLevels() 275 collection.recordData(identSet, uidInDifferentUser, SET_DEFAULT, TAG_NONE, 0, in testAccessLevels()
|
/packages/modules/Connectivity/framework-t/src/android/net/ |
D | NetworkStatsCollection.java | 857 private static boolean templateMatches(NetworkTemplate template, NetworkIdentitySet identSet) { in templateMatches() argument 858 for (NetworkIdentity ident : identSet) { in templateMatches()
|