/aosp12/packages/apps/Settings/src/com/android/settings/wifi/ |
H A D | WifiSummaryUpdater.java | 44 private static final IntentFilter INTENT_FILTER; field in WifiSummaryUpdater 46 INTENT_FILTER = new IntentFilter(); 47 INTENT_FILTER.addAction(WifiManager.WIFI_STATE_CHANGED_ACTION); 48 INTENT_FILTER.addAction(WifiManager.NETWORK_STATE_CHANGED_ACTION); 49 INTENT_FILTER.addAction(WifiManager.RSSI_CHANGED_ACTION); 79 mContext.registerReceiver(mReceiver, INTENT_FILTER); in register()
|
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/bluetooth/ |
H A D | BluetoothStateReceiver.java | 38 public static final IntentFilter INTENT_FILTER; field in BluetoothStateReceiver 40 INTENT_FILTER = new IntentFilter(); 41 INTENT_FILTER.addAction(BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED); 42 INTENT_FILTER.addAction(BluetoothHeadset.ACTION_AUDIO_STATE_CHANGED); 43 INTENT_FILTER.addAction(BluetoothHeadset.ACTION_ACTIVE_DEVICE_CHANGED); 44 INTENT_FILTER.addAction(BluetoothHearingAid.ACTION_CONNECTION_STATE_CHANGED); 45 INTENT_FILTER.addAction(BluetoothHearingAid.ACTION_ACTIVE_DEVICE_CHANGED);
|
/aosp12/packages/apps/TV/common/src/com/android/tv/common/support/tis/ |
H A D | BaseTvInputService.java | 31 private static final IntentFilter INTENT_FILTER = new IntentFilter(); field in BaseTvInputService 34 INTENT_FILTER.addAction(TvInputManager.ACTION_PARENTAL_CONTROLS_ENABLED_CHANGED); 35 INTENT_FILTER.addAction(TvInputManager.ACTION_BLOCKED_RATINGS_CHANGED); 78 registerReceiver(broadcastReceiver, INTENT_FILTER); in onCreate()
|
/aosp12/packages/apps/Settings/src/com/android/settings/notification/zen/ |
H A D | ZenModeSliceBuilder.java | 56 public static final IntentFilter INTENT_FILTER = new IntentFilter(); field in ZenModeSliceBuilder 59 INTENT_FILTER.addAction(NotificationManager.ACTION_NOTIFICATION_POLICY_CHANGED); 60 INTENT_FILTER.addAction(NotificationManager.ACTION_INTERRUPTION_FILTER_CHANGED); 61 INTENT_FILTER.addAction(NotificationManager.ACTION_INTERRUPTION_FILTER_CHANGED_INTERNAL);
|
/aosp12/packages/apps/Settings/src/com/android/settings/bluetooth/ |
H A D | BluetoothSliceBuilder.java | 56 public static final IntentFilter INTENT_FILTER = new IntentFilter(); field in BluetoothSliceBuilder 59 INTENT_FILTER.addAction(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED); 60 INTENT_FILTER.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | SystemUIDialog.java | 312 private static final IntentFilter INTENT_FILTER = new IntentFilter(); field in SystemUIDialog.DismissReceiver 314 INTENT_FILTER.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS); 315 INTENT_FILTER.addAction(Intent.ACTION_SCREEN_OFF); 328 mBroadcastDispatcher.registerReceiver(this, INTENT_FILTER, null, UserHandle.CURRENT); in register()
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/ |
H A D | FakeToggleController.java | 32 public static final IntentFilter INTENT_FILTER = new IntentFilter( field in FakeToggleController 66 return INTENT_FILTER; in getIntentFilter()
|
/aosp12/packages/apps/Settings/tests/unit/src/com/android/settings/testutils/ |
H A D | FakeToggleController.java | 32 public static final IntentFilter INTENT_FILTER = new IntentFilter( field in FakeToggleController 66 return INTENT_FILTER; in getIntentFilter()
|
/aosp12/frameworks/base/services/core/java/com/android/server/am/ |
H A D | BroadcastFilter.java | 55 super.dumpDebug(proto, BroadcastFilterProto.INTENT_FILTER); in dumpDebug()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/people/prediction/ |
H A D | ShareTargetPredictorTest.java | 87 private static final IntentFilter INTENT_FILTER = IntentFilter.create("SEND", "text/plain"); field in ShareTargetPredictorTest 126 bundle.putObject(ChooserActivity.APP_PREDICTION_INTENT_FILTER_KEY, INTENT_FILTER); in setUp() 145 .reportShareTargetEvent(eq(APP_TARGET_EVENT), eq(INTENT_FILTER)); in testReportAppTargetEvent()
|
/aosp12/packages/apps/Settings/src/com/android/settings/slices/ |
H A D | SettingsSliceProvider.java | 183 registerIntentToUri(ZenModeSliceBuilder.INTENT_FILTER, sliceUri); in onSlicePinned() 186 registerIntentToUri(BluetoothSliceBuilder.INTENT_FILTER, sliceUri); in onSlicePinned()
|
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/ |
H A D | TelecomSystem.java | 240 mContext.registerReceiver(bluetoothStateReceiver, BluetoothStateReceiver.INTENT_FILTER); in TelecomSystem()
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/slices/ |
H A D | SettingsSliceProviderTest.java | 200 .registerIntentToUri(eq(FakeToggleController.INTENT_FILTER), eq(INTENT_SLICE_URI)); in loadSlice_registersIntentFilter()
|