Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/vcn/
DVcn.java324 final VcnGatewayConnectionConfig gatewayConnectionConfig = entry.getKey(); in handleConfigUpdated() local
329 if (!mConfig.getGatewayConnectionConfigs().contains(gatewayConnectionConfig)) { in handleConfigUpdated()
381 for (VcnGatewayConnectionConfig gatewayConnectionConfig : mVcnGatewayConnections.keySet()) { in handleNetworkRequested()
382 if (isRequestSatisfiedByGatewayConnectionConfig(request, gatewayConnectionConfig)) { in handleNetworkRequested()
390 for (VcnGatewayConnectionConfig gatewayConnectionConfig : in handleNetworkRequested()
392 if (isRequestSatisfiedByGatewayConnectionConfig(request, gatewayConnectionConfig)) { in handleNetworkRequested()
395 if (getExposedCapabilitiesForMobileDataState(gatewayConnectionConfig).isEmpty()) { in handleNetworkRequested()
403 if (mVcnGatewayConnections.containsKey(gatewayConnectionConfig)) { in handleNetworkRequested()
415 gatewayConnectionConfig, in handleNetworkRequested()
416 new VcnGatewayStatusCallbackImpl(gatewayConnectionConfig), in handleNetworkRequested()
[all …]
DVcnGatewayConnection.java1973 @NonNull VcnGatewayConnectionConfig gatewayConnectionConfig, in buildNetworkCapabilities()
1984 for (int cap : gatewayConnectionConfig.getAllExposedCapabilities()) { in buildNetworkCapabilities()
2055 @NonNull VcnGatewayConnectionConfig gatewayConnectionConfig, in buildConnectedLinkProperties()
2060 gatewayConnectionConfig.getTunnelConnectionParams(); in buildConnectedLinkProperties()
2091 gatewayConnectionConfig.getMaxMtu(), in buildConnectedLinkProperties()
/frameworks/base/core/java/android/net/vcn/
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()
/frameworks/base/tests/vcn/java/android/net/vcn/
DVcnConfigTest.java51 for (VcnGatewayConnectionConfig gatewayConnectionConfig : GATEWAY_CONNECTION_CONFIGS) { in buildTestConfig()
52 builder.addGatewayConnectionConfig(gatewayConnectionConfig); in buildTestConfig()