Home
last modified time | relevance | path

Searched refs:VcnGatewayConnection (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/tests/vcn/java/com/android/server/vcn/
DVcnGatewayConnectionTestBase.java21 import static com.android.server.vcn.VcnGatewayConnection.VcnIkeSession;
22 import static com.android.server.vcn.VcnGatewayConnection.VcnNetworkAgent;
69 import com.android.server.vcn.VcnGatewayConnection.VcnChildSessionCallback;
70 import com.android.server.vcn.VcnGatewayConnection.VcnIkeSession;
71 import com.android.server.vcn.VcnGatewayConnection.VcnNetworkAgent;
72 import com.android.server.vcn.VcnGatewayConnection.VcnWakeLock;
169 @NonNull protected final VcnGatewayConnection.Dependencies mDeps;
185 protected VcnGatewayConnection mGatewayConnection;
195 mDeps = mock(VcnGatewayConnection.Dependencies.class); in VcnGatewayConnectionTestBase()
239 setUpWakeupMessage(mTeardownTimeoutAlarm, VcnGatewayConnection.TEARDOWN_TIMEOUT_ALARM); in VcnGatewayConnectionTestBase()
[all …]
DVcnTest.java129 return mock(VcnGatewayConnection.class); in setUp()
187 final Set<VcnGatewayConnection> gatewayConnections = mVcn.getVcnGatewayConnections(); in verifyUpdateSubscriptionSnapshotNotifiesGatewayConnections()
198 for (final VcnGatewayConnection gateway : gatewayConnections) { in verifyUpdateSubscriptionSnapshotNotifiesGatewayConnections()
298 public Set<VcnGatewayConnection> startGatewaysAndGetGatewayConnections( in startGatewaysAndGetGatewayConnections()
304 final Set<VcnGatewayConnection> gatewayConnections = mVcn.getVcnGatewayConnections(); in startGatewaysAndGetGatewayConnections()
320 Set<VcnGatewayConnection> activeGateways, in verifySafeMode()
322 for (VcnGatewayConnection gatewayConnection : activeGateways) { in verifySafeMode()
335 final Set<VcnGatewayConnection> gatewayConnections = in testGatewayEnteringAndExitingSafeModeNotifiesVcn()
341 final VcnGatewayConnection gatewayConnection = gatewayConnections.iterator().next(); in testGatewayEnteringAndExitingSafeModeNotifiesVcn()
368 final Set<VcnGatewayConnection> gatewayConnections = in verifyGatewayQuit()
[all …]
DVcnGatewayConnectionTest.java29 import static com.android.server.vcn.VcnGatewayConnection.DUMMY_ADDR;
30 import static com.android.server.vcn.VcnGatewayConnection.SAFEMODE_TIMEOUT_SECONDS;
31 import static com.android.server.vcn.VcnGatewayConnection.VcnChildSessionConfiguration;
32 import static com.android.server.vcn.VcnGatewayConnection.VcnIkeSession;
33 import static com.android.server.vcn.VcnGatewayConnection.VcnNetworkAgent;
155 VcnGatewayConnection.buildNetworkCapabilities( in verifyBuildNetworkCapabilitiesCommon()
310 private VcnGatewayConnection buildConnectionWithDataStallHandling( in buildConnectionWithDataStallHandling()
319 final VcnGatewayConnection gatewayConnection = in buildConnectionWithDataStallHandling()
320 new VcnGatewayConnection( in buildConnectionWithDataStallHandling()
333 final VcnGatewayConnection gatewayConnection = in testDataStallHandlingEnabled()
[all …]
DVcnGatewayConnectionConnectedStateTest.java33 import static com.android.server.vcn.VcnGatewayConnection.VcnChildSessionConfiguration;
34 import static com.android.server.vcn.VcnGatewayConnection.VcnIkeSession;
35 import static com.android.server.vcn.VcnGatewayConnection.VcnNetworkAgent;
77 import com.android.server.vcn.VcnGatewayConnection.VcnChildSessionCallback;
78 import com.android.server.vcn.VcnGatewayConnection.VcnChildSessionConfiguration;
79 import com.android.server.vcn.VcnGatewayConnection.VcnIkeSession;
80 import com.android.server.vcn.VcnGatewayConnection.VcnNetworkAgent;
238 VcnGatewayConnection vcnGatewayConnection, boolean expectForwardTransform) in verifyVcnTransformsApplied()
247 VcnGatewayConnection vcnGatewayConnection, in verifyVcnTransformsApplied()
280 VcnGatewayConnection gatewayConnection = in testCreatedTransformsAreAppliedWithDun()
[all …]
DVcnGatewayConnectionDisconnectedStateTest.java21 import static com.android.server.vcn.VcnGatewayConnection.DUMMY_ADDR;
61 final VcnGatewayConnection vgc = in testEnterWhileQuittingTriggersQuit()
62 new VcnGatewayConnection( in testEnterWhileQuittingTriggersQuit()
DVcnGatewayConnectionConnectingStateTest.java19 import static com.android.server.vcn.VcnGatewayConnection.VcnIkeSession;
DVcnGatewayConnectionRetryTimeoutStateTest.java19 import static com.android.server.vcn.VcnGatewayConnection.VcnNetworkAgent;
/frameworks/base/services/core/java/com/android/server/vcn/
DVcn.java178 private final Map<VcnGatewayConnectionConfig, VcnGatewayConnection> mVcnGatewayConnections =
271 public Set<VcnGatewayConnection> getVcnGatewayConnections() { in getVcnGatewayConnections()
277 public Map<VcnGatewayConnectionConfig, VcnGatewayConnection>
333 for (final Entry<VcnGatewayConnectionConfig, VcnGatewayConnection> entry : in handleConfigUpdated()
336 final VcnGatewayConnection gatewayConnection = entry.getValue(); in handleConfigUpdated()
361 for (VcnGatewayConnection gatewayConnection : mVcnGatewayConnections.values()) { in handleTeardown()
379 for (VcnGatewayConnection gatewayConnection : mVcnGatewayConnections.values()) { in handleSafeModeStatusChanged()
429 final VcnGatewayConnection vcnGatewayConnection = in handleNetworkRequested()
472 for (VcnGatewayConnection gatewayConnection : mVcnGatewayConnections.values()) { in handleSubscriptionsChanged()
518 for (Entry<VcnGatewayConnectionConfig, VcnGatewayConnection> entry : in handleMobileDataToggled()
[all …]
DVcnGatewayConnection.java174 public class VcnGatewayConnection extends StateMachine { class
175 private static final String TAG = VcnGatewayConnection.class.getSimpleName();
748 public VcnGatewayConnection( in VcnGatewayConnection() method in VcnGatewayConnection
766 VcnGatewayConnection( in VcnGatewayConnection() method in VcnGatewayConnection