Home
last modified time | relevance | path

Searched refs:getUidNetworkingBlockedReasons (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivityservice/
DCSBlockedReasonsTest.kt89 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(Process.myUid()) in cellNc()
121 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(Process.myUid()) in cellNc()
146 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(Process.myUid()) in cellNc()
158 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(Process.myUid()) in cellNc()
176 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(Process.myUid()) in cellNc()
206 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(Process.myUid()) in cellNc()
221 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(Process.myUid()) in cellNc()
243 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(Process.myUid()) in cellNc()
257 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(Process.myUid()) in cellNc()
266 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(Process.myUid()) in cellNc()
[all …]
DCSDestroySocketTest.kt95 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(TEST_UID) in doTestBackgroundRestrictionDestroySockets()
172 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(TEST_UID) in testReplaceFirewallChain()
180 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(TEST_UID2) in testReplaceFirewallChain()
191 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(TEST_UID) in testReplaceFirewallChain()
193 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(TEST_UID2) in testReplaceFirewallChain()
233 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(TEST_UID) in doTestDestroySockets()
260 .`when`(bpfNetMaps).getUidNetworkingBlockedReasons(TEST_UID) in doTestDestroySockets()
/packages/modules/Connectivity/framework/src/android/net/
DBpfNetMapsUtils.java259 public static int getUidNetworkingBlockedReasons(final int uid, in getUidNetworkingBlockedReasons() method in BpfNetMapsUtils
340 final int blockedReasons = getUidNetworkingBlockedReasons( in isUidNetworkingBlocked()
/packages/modules/Connectivity/service/src/com/android/server/
DBpfNetMaps.java900 public int getUidNetworkingBlockedReasons(final int uid) { in getUidNetworkingBlockedReasons() method in BpfNetMaps
901 return BpfNetMapsUtils.getUidNetworkingBlockedReasons(uid, in getUidNetworkingBlockedReasons()
913 final int blockedReasons = getUidNetworkingBlockedReasons(uid); in isUidRestrictedOnMeteredNetworks()
DConnectivityService.java8329 List.of(new Pair<>(uid, mBpfNetMaps.getUidNetworkingBlockedReasons(uid)))));
13904 List.of(new Pair<>(uid, mBpfNetMaps.getUidNetworkingBlockedReasons(uid)))));
14038 new Pair<>(uid, mBpfNetMaps.getUidNetworkingBlockedReasons(uid)));
14061 final int blockedReasons = mBpfNetMaps.getUidNetworkingBlockedReasons(uid);
/packages/modules/Connectivity/tests/unit/java/com/android/server/
DBpfNetMapsTest.java1190 assertEquals(expectedBlockedReasons, mBpfNetMaps.getUidNetworkingBlockedReasons(TEST_UID)); in doTestGetUidNetworkingBlockedReasons()