Home
last modified time | relevance | path

Searched refs:inferRestrictedCapability (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Connectivity/staticlibs/tests/unit/src/com/android/net/module/util/
DNetworkCapabilitiesUtilsTest.kt81 assertFalse(NetworkCapabilitiesUtils.inferRestrictedCapability(nc)) in testInferRestrictedCapability()
85 assertTrue(NetworkCapabilitiesUtils.inferRestrictedCapability(nc)) in testInferRestrictedCapability()
90 assertFalse(NetworkCapabilitiesUtils.inferRestrictedCapability(nc)) in testInferRestrictedCapability()
94 assertTrue(NetworkCapabilitiesUtils.inferRestrictedCapability(nc)) in testInferRestrictedCapability()
100 assertTrue(NetworkCapabilitiesUtils.inferRestrictedCapability(nc)) in testInferRestrictedCapability()
/packages/modules/Connectivity/staticlibs/framework/com/android/net/module/util/
DNetworkCapabilitiesUtils.java162 public static boolean inferRestrictedCapability(NetworkCapabilities nc) { in inferRestrictedCapability() method in NetworkCapabilitiesUtils
163 return inferRestrictedCapability(packBits(nc.getCapabilities())); in inferRestrictedCapability()
174 public static boolean inferRestrictedCapability(long capabilities) { in inferRestrictedCapability() method in NetworkCapabilitiesUtils
/packages/modules/Connectivity/framework/src/android/net/
DNetworkCapabilities.java1223 if (NetworkCapabilitiesUtils.inferRestrictedCapability(mNetworkCapabilities)) { in maybeMarkCapabilitiesRestricted()