Home
last modified time | relevance | path

Searched refs:TetheringNotificationUpdater (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DTetheringNotificationUpdaterTest.kt43 import com.android.networkstack.tethering.TetheringNotificationUpdater.ACTION_DISABLE_TETHERING
44 import com.android.networkstack.tethering.TetheringNotificationUpdater.DOWNSTREAM_NONE
45 import com.android.networkstack.tethering.TetheringNotificationUpdater.EVENT_SHOW_NO_UPSTREAM
46 import com.android.networkstack.tethering.TetheringNotificationUpdater.NO_UPSTREAM_NOTIFICATION_ID
47 import com.android.networkstack.tethering.TetheringNotificationUpdater.RESTRICTED_NOTIFICATION_ID
48 import com.android.networkstack.tethering.TetheringNotificationUpdater.ROAMING_NOTIFICATION_ID
49 import com.android.networkstack.tethering.TetheringNotificationUpdater.VERIZON_CARRIER_ID
50 import com.android.networkstack.tethering.TetheringNotificationUpdater.getSettingsPackageName
96 private lateinit var notificationUpdater: TetheringNotificationUpdater
118 : TetheringNotificationUpdater(c, looper) { in createContextAsUser()
DTetheringTest.java80 import static com.android.networkstack.tethering.TetheringNotificationUpdater.DOWNSTREAM_NONE;
287 @Mock private TetheringNotificationUpdater mNotificationUpdater;
521 public TetheringNotificationUpdater makeNotificationUpdater(Context ctx, Looper looper) { in makeNotificationUpdater()
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DTetheringDependencies.java141 public TetheringNotificationUpdater makeNotificationUpdater(@NonNull final Context ctx, in makeNotificationUpdater()
143 return new TetheringNotificationUpdater(ctx, looper); in makeNotificationUpdater()
DTetheringNotificationUpdater.java64 public class TetheringNotificationUpdater { class
65 private static final String TAG = TetheringNotificationUpdater.class.getSimpleName();
140 public TetheringNotificationUpdater(@NonNull final Context context, in TetheringNotificationUpdater() method in TetheringNotificationUpdater
DTethering.java67 import static com.android.networkstack.tethering.TetheringNotificationUpdater.DOWNSTREAM_NONE;
258 private final TetheringNotificationUpdater mNotificationUpdater;
481 noUpstreamFilter.addAction(TetheringNotificationUpdater.ACTION_DISABLE_TETHERING); in startStateMachineUpdaters()
1193 } else if (action.equals(TetheringNotificationUpdater.ACTION_DISABLE_TETHERING)) { in onReceive()
1379 private final TetheringNotificationUpdater mNotificationUpdater;
1383 @NonNull TetheringNotificationUpdater updater) { in UserRestrictionActionListener()