Home
last modified time | relevance | path

Searched refs:TelephonySubscriptionSnapshot (Results 1 – 12 of 12) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/vcn/
H A DTelephonySubscriptionTracker.java95 @NonNull private TelephonySubscriptionSnapshot mCurrentSnapshot;
195 final TelephonySubscriptionSnapshot newSnapshot = in handleSubscriptionsChanged()
196 new TelephonySubscriptionSnapshot( in handleSubscriptionsChanged()
253 public static class TelephonySubscriptionSnapshot { class in TelephonySubscriptionTracker
258 public static final TelephonySubscriptionSnapshot EMPTY_SNAPSHOT =
259 new TelephonySubscriptionSnapshot(
263 TelephonySubscriptionSnapshot( in TelephonySubscriptionSnapshot() method in TelephonySubscriptionTracker.TelephonySubscriptionSnapshot
350 if (!(obj instanceof TelephonySubscriptionSnapshot)) { in equals()
354 final TelephonySubscriptionSnapshot other = (TelephonySubscriptionSnapshot) obj; in equals()
394 void onNewSnapshot(@NonNull TelephonySubscriptionSnapshot snapshot); in onNewSnapshot()
H A DUnderlyingNetworkTracker.java50 import com.android.server.vcn.TelephonySubscriptionTracker.TelephonySubscriptionSnapshot;
138 @NonNull private TelephonySubscriptionSnapshot mLastSnapshot;
148 @NonNull TelephonySubscriptionSnapshot snapshot, in UnderlyingNetworkTracker()
161 @NonNull TelephonySubscriptionSnapshot snapshot, in UnderlyingNetworkTracker()
382 public void updateSubscriptionSnapshot(@NonNull TelephonySubscriptionSnapshot newSnapshot) { in updateSubscriptionSnapshot()
385 final TelephonySubscriptionSnapshot oldSnapshot = mLastSnapshot; in updateSubscriptionSnapshot()
428 @NonNull TelephonySubscriptionSnapshot snapshot, Set<Integer> subIds) { in isOpportunistic()
616 TelephonySubscriptionSnapshot snapshot, in calculatePriorityClass()
674 TelephonySubscriptionSnapshot snapshot, in getComparator()
690 TelephonySubscriptionSnapshot snapshot, in dump()
H A DVcn.java56 import com.android.server.vcn.TelephonySubscriptionTracker.TelephonySubscriptionSnapshot;
182 @NonNull private TelephonySubscriptionSnapshot mLastSnapshot;
200 @NonNull TelephonySubscriptionSnapshot snapshot, in Vcn()
210 @NonNull TelephonySubscriptionSnapshot snapshot, in Vcn()
247 public void updateSubscriptionSnapshot(@NonNull TelephonySubscriptionSnapshot snapshot) { in updateSubscriptionSnapshot()
306 handleSubscriptionsChanged((TelephonySubscriptionSnapshot) msg.obj); in handleMessage()
467 private void handleSubscriptionsChanged(@NonNull TelephonySubscriptionSnapshot snapshot) { in handleSubscriptionsChanged()
741 TelephonySubscriptionSnapshot snapshot, in newVcnGatewayConnection()
H A DVcnGatewayConnection.java90 import com.android.server.vcn.TelephonySubscriptionTracker.TelephonySubscriptionSnapshot;
521 @NonNull private TelephonySubscriptionSnapshot mLastSnapshot;
643 @NonNull TelephonySubscriptionSnapshot snapshot, in VcnGatewayConnection()
661 @NonNull TelephonySubscriptionSnapshot snapshot, in VcnGatewayConnection()
762 public void updateSubscriptionSnapshot(@NonNull TelephonySubscriptionSnapshot snapshot) { in updateSubscriptionSnapshot()
2367 TelephonySubscriptionSnapshot snapshot, in newUnderlyingNetworkTracker()
/aosp12/frameworks/base/tests/vcn/java/com/android/server/vcn/
H A DTelephonySubscriptionTrackerTest.java201 private TelephonySubscriptionSnapshot buildExpectedSnapshot( in buildExpectedSnapshot()
206 private TelephonySubscriptionSnapshot buildExpectedSnapshot( in buildExpectedSnapshot()
209 return new TelephonySubscriptionSnapshot(0, subIdToInfoMap, privilegedPackages); in buildExpectedSnapshot()
212 private TelephonySubscriptionSnapshot buildExpectedSnapshot( in buildExpectedSnapshot()
279 ArgumentCaptor<TelephonySubscriptionSnapshot> snapshotCaptor = in testOnSubscriptionsChangedFired_onActiveSubIdsChanged()
280 ArgumentCaptor.forClass(TelephonySubscriptionSnapshot.class); in testOnSubscriptionsChangedFired_onActiveSubIdsChanged()
283 TelephonySubscriptionSnapshot snapshot = snapshotCaptor.getValue(); in testOnSubscriptionsChangedFired_onActiveSubIdsChanged()
410 final TelephonySubscriptionSnapshot snapshot = in testTelephonySubscriptionSnapshotGetGroupForSubId()
411 new TelephonySubscriptionSnapshot( in testTelephonySubscriptionSnapshotGetGroupForSubId()
420 final TelephonySubscriptionSnapshot snapshot = in testTelephonySubscriptionSnapshotGetAllSubIdsInGroup()
[all …]
H A DVcnTest.java59 import com.android.server.vcn.TelephonySubscriptionTracker.TelephonySubscriptionSnapshot;
94 private TelephonySubscriptionSnapshot mSubscriptionSnapshot;
113 mSubscriptionSnapshot = mock(TelephonySubscriptionSnapshot.class); in setUp()
190 final TelephonySubscriptionSnapshot updatedSnapshot = in verifyUpdateSubscriptionSnapshotNotifiesGatewayConnections()
191 mock(TelephonySubscriptionSnapshot.class); in verifyUpdateSubscriptionSnapshotNotifiesGatewayConnections()
261 final TelephonySubscriptionSnapshot updatedSnapshot = in testSubscriptionSnapshotUpdatesMobileDataState()
262 mock(TelephonySubscriptionSnapshot.class); in testSubscriptionSnapshotUpdatesMobileDataState()
276 final TelephonySubscriptionSnapshot updatedSnapshot = in testSubscriptionSnapshotUpdatesMobileDataStateListeners()
277 mock(TelephonySubscriptionSnapshot.class); in testSubscriptionSnapshotUpdatesMobileDataStateListeners()
H A DVcnGatewayConnectionTest.java55 import com.android.server.vcn.TelephonySubscriptionTracker.TelephonySubscriptionSnapshot;
172 final TelephonySubscriptionSnapshot updatedSnapshot = in testSubscriptionSnapshotUpdateNotifiesUnderlyingNetworkTracker()
173 mock(TelephonySubscriptionSnapshot.class); in testSubscriptionSnapshotUpdateNotifiesUnderlyingNetworkTracker()
H A DUnderlyingNetworkTrackerTest.java50 import com.android.server.vcn.TelephonySubscriptionTracker.TelephonySubscriptionSnapshot;
104 @Mock private TelephonySubscriptionSnapshot mSubscriptionSnapshot;
232 TelephonySubscriptionSnapshot subscriptionUpdate = in testUpdateSubscriptionSnapshot()
233 mock(TelephonySubscriptionSnapshot.class); in testUpdateSubscriptionSnapshot()
H A DVcnGatewayConnectionTestBase.java61 import com.android.server.vcn.TelephonySubscriptionTracker.TelephonySubscriptionSnapshot;
127 protected static final TelephonySubscriptionSnapshot TEST_SUBSCRIPTION_SNAPSHOT =
128 new TelephonySubscriptionSnapshot(
/aosp12/frameworks/base/tests/vcn/java/com/android/server/
H A DVcnManagementServiceTest.java306 private TelephonySubscriptionSnapshot triggerSubscriptionTrackerCbAndGetSnapshot( in triggerSubscriptionTrackerCbAndGetSnapshot()
342 final TelephonySubscriptionSnapshot snapshot = in triggerSubscriptionTrackerCbAndGetSnapshot()
356 private TelephonySubscriptionSnapshot buildSubscriptionSnapshot( in buildSubscriptionSnapshot()
362 final TelephonySubscriptionSnapshot snapshot = mock(TelephonySubscriptionSnapshot.class); in buildSubscriptionSnapshot()
431 TelephonySubscriptionSnapshot snapshot = in testTelephonyNetworkTrackerCallbackStartsInstances()
455 TelephonySubscriptionSnapshot snapshot = in testTelephonyNetworkTrackerCallbackSwitchingActiveDataStartsAndStopsInstances()
1103 TelephonySubscriptionSnapshot snapshot = in testSubscriptionSnapshotUpdateNotifiesVcn()
1150 @NonNull TelephonySubscriptionSnapshot snapshot, in triggerVcnSafeMode()
1167 TelephonySubscriptionSnapshot snapshot = in verifyVcnSafeModeChangesNotifiesPolicyListeners()
1194 TelephonySubscriptionSnapshot snapshot = in triggerVcnStatusCallbackOnSafeModeStatusChanged()
[all …]
/aosp12/frameworks/base/services/core/java/com/android/server/
H A DVcnManagementService.java29 import static com.android.server.vcn.TelephonySubscriptionTracker.TelephonySubscriptionSnapshot;
195 private TelephonySubscriptionSnapshot mLastSnapshot =
196 TelephonySubscriptionSnapshot.EMPTY_SNAPSHOT;
357 @NonNull TelephonySubscriptionSnapshot snapshot, in newVcn()
440 @NonNull ParcelUuid subGrp, @NonNull TelephonySubscriptionSnapshot snapshot) { in isActiveSubGroup()
456 public void onNewSnapshot(@NonNull TelephonySubscriptionSnapshot snapshot) { in onNewSnapshot()
459 final TelephonySubscriptionSnapshot oldSnapshot = mLastSnapshot; in onNewSnapshot()
543 @NonNull TelephonySubscriptionSnapshot snapshot) { in getSubGroupToSubIdMappings()
834 final TelephonySubscriptionSnapshot snapshot; in getSubGroupForNetworkCapabilities()
1052 void setLastSnapshot(@NonNull TelephonySubscriptionSnapshot snapshot) { in setLastSnapshot()
/aosp12/frameworks/base/services/
H A Dart-profile3582 …SubscriptionTracker$TelephonySubscriptionSnapshot;)Lcom/android/server/vcn/TelephonySubscriptionTr…
3593TelephonySubscriptionSnapshot;)Ljava/util/Map;+]Lcom/android/server/vcn/TelephonySubscriptionTrack…
3595 …SubscriptionTracker$TelephonySubscriptionSnapshot;Lcom/android/server/vcn/TelephonySubscriptionTra…
42157 HSPLcom/android/server/vcn/TelephonySubscriptionTracker$TelephonySubscriptionSnapshot;-><clinit>()V
42158 PLcom/android/server/vcn/TelephonySubscriptionTracker$TelephonySubscriptionSnapshot;->dump(Lcom/and…
42164 HSPLcom/android/server/vcn/TelephonySubscriptionTracker$TelephonySubscriptionSnapshot;->toString()L…
42213 …ess$1600(Lcom/android/server/vcn/TelephonySubscriptionTracker$TelephonySubscriptionSnapshot;Ljava/…
42228 …tunistic(Lcom/android/server/vcn/TelephonySubscriptionTracker$TelephonySubscriptionSnapshot;Ljava/…
42233TelephonySubscriptionSnapshot;)V+]Lcom/android/server/vcn/TelephonySubscriptionTracker$TelephonySu…
42472 …ptionSnapshot(Lcom/android/server/vcn/TelephonySubscriptionTracker$TelephonySubscriptionSnapshot;)V
[all …]