Home
last modified time | relevance | path

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

/aosp12/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
H A DTetheringNotificationUpdaterTest.kt247 notificationUpdater.onDownstreamChanged(DOWNSTREAM_NONE)
298 notificationUpdater.onDownstreamChanged(WIFI_MASK)
324 notificationUpdater.onDownstreamChanged(DOWNSTREAM_NONE)
328 notificationUpdater.onDownstreamChanged(WIFI_MASK)
376 notificationUpdater.onDownstreamChanged(WIFI_MASK)
406 notificationUpdater.onDownstreamChanged(DOWNSTREAM_NONE)
410 notificationUpdater.onDownstreamChanged(WIFI_MASK)
H A DTetheringTest.java822 verify(mNotificationUpdater, times(1)).onDownstreamChanged(DOWNSTREAM_NONE); in failingLocalOnlyHotspotLegacyApBroadcast()
910 verify(mNotificationUpdater, times(2)).onDownstreamChanged(DOWNSTREAM_NONE); in workingLocalOnlyHotspotEnrichedApBroadcast()
1424 verify(mNotificationUpdater, times(1)).onDownstreamChanged(DOWNSTREAM_NONE); in failingWifiTetheringLegacyApBroadcast()
1468 verify(mNotificationUpdater, times(1)).onDownstreamChanged(DOWNSTREAM_NONE); in workingWifiTetheringEnrichedApBroadcast()
1469 verify(mNotificationUpdater, times(1)).onDownstreamChanged(eq(1 << TETHERING_WIFI)); in workingWifiTetheringEnrichedApBroadcast()
1541 verify(mNotificationUpdater, times(2)).onDownstreamChanged(DOWNSTREAM_NONE); in failureEnablingIpForwarding()
1542 verify(mNotificationUpdater, times(1)).onDownstreamChanged(eq(1 << TETHERING_WIFI)); in failureEnablingIpForwarding()
1974 verify(mNotificationUpdater, times(2)).onDownstreamChanged(DOWNSTREAM_NONE); in workingWifiP2pGroupOwner()
/aosp12/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
H A DTetheringNotificationUpdater.java169 public void onDownstreamChanged(@IntRange(from = 0, to = 7) final int downstreamTypesMask) { in onDownstreamChanged() method in TetheringNotificationUpdater
H A DTethering.java964 mNotificationUpdater.onDownstreamChanged(downstreamTypesMask); in sendTetherStateChangedBroadcast()