/packages/services/Telecomm/src/com/android/server/telecom/bluetooth/ |
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);
|
/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); 78 mContext.registerReceiver(mReceiver, INTENT_FILTER); in register()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/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); 78 mContext.registerReceiver(mReceiver, INTENT_FILTER); in register()
|
/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/ |
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);
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/notification/ |
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);
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/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/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/robotests/src/com/android/settings/testutils/ |
D | FakeToggleController.java | 35 public static final IntentFilter INTENT_FILTER = new IntentFilter( field in FakeToggleController 69 return INTENT_FILTER; in getIntentFilter()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/slices/ |
D | SettingsSliceProvider.java | 153 registerIntentToUri(ZenModeSliceBuilder.INTENT_FILTER, sliceUri); in onSlicePinned() 156 registerIntentToUri(BluetoothSliceBuilder.INTENT_FILTER, sliceUri); in onSlicePinned()
|
/packages/apps/Settings/src/com/android/settings/slices/ |
D | SettingsSliceProvider.java | 157 registerIntentToUri(ZenModeSliceBuilder.INTENT_FILTER, sliceUri); in onSlicePinned() 160 registerIntentToUri(BluetoothSliceBuilder.INTENT_FILTER, sliceUri); in onSlicePinned()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | TelecomSystem.java | 240 mContext.registerReceiver(bluetoothStateReceiver, BluetoothStateReceiver.INTENT_FILTER); in TelecomSystem()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/slices/ |
D | SettingsSliceProviderTest.java | 184 verify(mProvider).registerIntentToUri(eq(FakeToggleController.INTENT_FILTER), eq(uri)); in loadSlice_registersIntentFilter()
|