Home
last modified time | relevance | path

Searched refs:INTENT_FILTER (Results 1 – 11 of 11) sorted by relevance

/packages/apps/Settings/src/com/android/settings/wifi/
DWifiSummaryUpdater.java44 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/
DBluetoothStateReceiver.java55 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/
DBaseTvInputService.java31 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/
DZenModeSliceBuilder.java61 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/
DBluetoothSliceBuilder.java56 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/
DFakeToggleController.java33 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/
DFakeToggleController.java33 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/
DWifiStatusRepository.kt54 .broadcastReceiverFlow(INTENT_FILTER) in wifiStatusTrackerFlow()
68 val INTENT_FILTER = constant
/packages/apps/Settings/src/com/android/settings/slices/
DSettingsSliceProvider.java187 registerIntentToUri(ZenModeSliceBuilder.INTENT_FILTER, sliceUri); in onSlicePinned()
190 registerIntentToUri(BluetoothSliceBuilder.INTENT_FILTER, sliceUri); in onSlicePinned()
/packages/services/Telecomm/src/com/android/server/telecom/
DTelecomSystem.java269 mContext.registerReceiver(bluetoothStateReceiver, BluetoothStateReceiver.INTENT_FILTER); in TelecomSystem()
/packages/apps/Settings/tests/robotests/src/com/android/settings/slices/
DSettingsSliceProviderTest.java201 .registerIntentToUri(eq(FakeToggleController.INTENT_FILTER), eq(INTENT_SLICE_URI)); in loadSlice_registersIntentFilter()