Home
last modified time | relevance | path

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

/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DTetheringNotificationUpdaterTest.kt248 notificationUpdater.onDownstreamChanged(DOWNSTREAM_NONE) in testRestrictedNotification()
299 notificationUpdater.onDownstreamChanged(WIFI_MASK) in testNoUpstreamNotification()
325 notificationUpdater.onDownstreamChanged(DOWNSTREAM_NONE) in testNoUpstreamNotification()
329 notificationUpdater.onDownstreamChanged(WIFI_MASK) in testNoUpstreamNotification()
377 notificationUpdater.onDownstreamChanged(WIFI_MASK) in testRoamingNotification()
407 notificationUpdater.onDownstreamChanged(DOWNSTREAM_NONE) in testRoamingNotification()
411 notificationUpdater.onDownstreamChanged(WIFI_MASK) in testRoamingNotification()
DTetheringTest.java903 verify(mNotificationUpdater, times(1)).onDownstreamChanged(DOWNSTREAM_NONE); in failingLocalOnlyHotspotLegacyApBroadcast()
1008 verify(mNotificationUpdater, times(2)).onDownstreamChanged(DOWNSTREAM_NONE); in verifyStartHotspot()
1011 verify(mNotificationUpdater).onDownstreamChanged(DOWNSTREAM_NONE); in verifyStartHotspot()
1012 verify(mNotificationUpdater).onDownstreamChanged(eq(1 << TETHERING_WIFI)); in verifyStartHotspot()
1926 verify(mNotificationUpdater, times(1)).onDownstreamChanged(DOWNSTREAM_NONE); in failingWifiTetheringLegacyApBroadcast()
2020 verify(mNotificationUpdater, times(2)).onDownstreamChanged(DOWNSTREAM_NONE); in failureEnablingIpForwarding()
2021 verify(mNotificationUpdater, times(1)).onDownstreamChanged(eq(1 << TETHERING_WIFI)); in failureEnablingIpForwarding()
2465 verify(mNotificationUpdater, times(2)).onDownstreamChanged(DOWNSTREAM_NONE); in workingWifiP2pGroupOwner()
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DTetheringNotificationUpdater.java169 public void onDownstreamChanged(@IntRange(from = 0, to = 7) final int downstreamTypesMask) { in onDownstreamChanged() method in TetheringNotificationUpdater
DTethering.java1132 mNotificationUpdater.onDownstreamChanged(downstreamTypesMask); in sendTetherStateChangedBroadcast()