Home
last modified time | relevance | path

Searched refs:gatewayConnectionConfig (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/vcn/
H A DVcn.java335 final VcnGatewayConnectionConfig gatewayConnectionConfig = entry.getKey(); in handleConfigUpdated() local
407 for (VcnGatewayConnectionConfig gatewayConnectionConfig : in handleNetworkRequested()
420 if (mVcnGatewayConnections.containsKey(gatewayConnectionConfig)) { in handleNetworkRequested()
432 gatewayConnectionConfig, in handleNetworkRequested()
433 new VcnGatewayStatusCallbackImpl(gatewayConnectionConfig), in handleNetworkRequested()
435 mVcnGatewayConnections.put(gatewayConnectionConfig, vcnGatewayConnection); in handleNetworkRequested()
445 VcnGatewayConnectionConfig gatewayConnectionConfig) { in getExposedCapabilitiesForMobileDataState() argument
447 return gatewayConnectionConfig.getAllExposedCapabilities(); in getExposedCapabilitiesForMobileDataState()
451 new ArraySet<>(gatewayConnectionConfig.getAllExposedCapabilities()); in getExposedCapabilitiesForMobileDataState()
522 gatewayConnectionConfig.getAllExposedCapabilities(); in handleMobileDataToggled()
[all …]
H A DVcnGatewayConnection.java1983 @NonNull VcnGatewayConnectionConfig gatewayConnectionConfig, in buildNetworkCapabilities()
1994 for (int cap : gatewayConnectionConfig.getAllExposedCapabilities()) { in buildNetworkCapabilities()
2065 @NonNull VcnGatewayConnectionConfig gatewayConnectionConfig, in buildConnectedLinkProperties()
2070 gatewayConnectionConfig.getTunnelConnectionParams(); in buildConnectedLinkProperties()
2101 gatewayConnectionConfig.getMaxMtu(), in buildConnectedLinkProperties()
/aosp12/frameworks/base/core/java/android/net/vcn/
H A DVcnConfig.java211 @NonNull VcnGatewayConnectionConfig gatewayConnectionConfig) { in addGatewayConnectionConfig()
212 Objects.requireNonNull(gatewayConnectionConfig, "gatewayConnectionConfig was null"); in addGatewayConnectionConfig()
218 .equals(gatewayConnectionConfig.getGatewayConnectionName())) { in addGatewayConnectionConfig()
224 mGatewayConnectionConfigs.add(gatewayConnectionConfig); in addGatewayConnectionConfig()
/aosp12/frameworks/base/tests/vcn/java/android/net/vcn/
H A DVcnConfigTest.java51 for (VcnGatewayConnectionConfig gatewayConnectionConfig : GATEWAY_CONNECTION_CONFIGS) { in buildTestConfig()
52 builder.addGatewayConnectionConfig(gatewayConnectionConfig); in buildTestConfig()