/packages/apps/Settings/src/com/android/settings/wifi/ |
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()
|
/packages/services/Telecomm/src/com/android/server/telecom/bluetooth/ |
D | BluetoothStateReceiver.java | 55 public static final IntentFilter INTENT_FILTER; field in BluetoothStateReceiver 57 INTENT_FILTER = new IntentFilter(); 58 INTENT_FILTER.addAction(BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED); 59 INTENT_FILTER.addAction(BluetoothHeadset.ACTION_AUDIO_STATE_CHANGED); 60 INTENT_FILTER.addAction(BluetoothHeadset.ACTION_ACTIVE_DEVICE_CHANGED); 61 INTENT_FILTER.addAction(BluetoothHearingAid.ACTION_CONNECTION_STATE_CHANGED); 62 INTENT_FILTER.addAction(BluetoothHearingAid.ACTION_ACTIVE_DEVICE_CHANGED); 63 INTENT_FILTER.addAction(BluetoothLeAudio.ACTION_LE_AUDIO_CONNECTION_STATE_CHANGED); 64 INTENT_FILTER.addAction(BluetoothLeAudio.ACTION_LE_AUDIO_ACTIVE_DEVICE_CHANGED); 65 INTENT_FILTER.setPriority(IntentFilter.SYSTEM_HIGH_PRIORITY);
|
/packages/apps/TV/common/src/com/android/tv/common/support/tis/ |
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()
|
/packages/apps/Settings/src/com/android/settings/notification/zen/ |
D | ZenModeSliceBuilder.java | 61 public static final IntentFilter INTENT_FILTER = new IntentFilter(); field in ZenModeSliceBuilder 64 INTENT_FILTER.addAction(NotificationManager.ACTION_NOTIFICATION_POLICY_CHANGED); 65 INTENT_FILTER.addAction(NotificationManager.ACTION_INTERRUPTION_FILTER_CHANGED); 66 INTENT_FILTER.addAction(NotificationManager.ACTION_INTERRUPTION_FILTER_CHANGED_INTERNAL);
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
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);
|
/packages/apps/Settings/tests/unit/src/com/android/settings/testutils/ |
D | FakeToggleController.java | 33 public static final IntentFilter INTENT_FILTER = new IntentFilter( field in FakeToggleController 67 return INTENT_FILTER; in getIntentFilter()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/ |
D | FakeToggleController.java | 33 public static final IntentFilter INTENT_FILTER = new IntentFilter( field in FakeToggleController 67 return INTENT_FILTER; in getIntentFilter()
|
/packages/apps/Settings/src/com/android/settings/wifi/repository/ |
D | WifiStatusRepository.kt | 54 .broadcastReceiverFlow(INTENT_FILTER) in wifiStatusTrackerFlow() 68 val INTENT_FILTER = constant
|
/packages/apps/Settings/src/com/android/settings/slices/ |
D | SettingsSliceProvider.java | 187 registerIntentToUri(ZenModeSliceBuilder.INTENT_FILTER, sliceUri); in onSlicePinned() 190 registerIntentToUri(BluetoothSliceBuilder.INTENT_FILTER, sliceUri); in onSlicePinned()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | TelecomSystem.java | 269 mContext.registerReceiver(bluetoothStateReceiver, BluetoothStateReceiver.INTENT_FILTER); in TelecomSystem()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/slices/ |
D | SettingsSliceProviderTest.java | 201 .registerIntentToUri(eq(FakeToggleController.INTENT_FILTER), eq(INTENT_SLICE_URI)); in loadSlice_registersIntentFilter()
|