Home
last modified time | relevance | path

Searched refs:ACTION_ADD_CONTROL (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/management/
DControlsRequestReceiverTest.kt79 intent = Intent(ControlsProviderService.ACTION_ADD_CONTROL).apply { in setUp()
162 val badIntent = Intent(ControlsProviderService.ACTION_ADD_CONTROL).apply { in testClassCastExceptionComponentName_noCrash()
173 val badIntent = Intent(ControlsProviderService.ACTION_ADD_CONTROL).apply { in testClassCastExceptionControl_noCrash()
193 val badIntent = Intent(ControlsProviderService.ACTION_ADD_CONTROL).apply { in testClassNotFoundExceptionComponent_noCrash()
212 val badIntent = Intent(ControlsProviderService.ACTION_ADD_CONTROL).apply { in testClassNotFoundExceptionControl_noCrash()
222 val badIntent = Intent(ControlsProviderService.ACTION_ADD_CONTROL).apply { in testMissingComponentName_noCrash()
232 val badIntent = Intent(ControlsProviderService.ACTION_ADD_CONTROL).apply { in testMissingControl_noCrash()
/frameworks/base/core/java/android/service/controls/
DControlsProviderService.java128 public static final String ACTION_ADD_CONTROL = field in ControlsProviderService
419 Intent intent = new Intent(ACTION_ADD_CONTROL);
/frameworks/base/core/tests/coretests/src/android/service/controls/
DControlProviderServiceTest.java306 assertEquals(ControlsProviderService.ACTION_ADD_CONTROL, intent.getAction()); in testRequestAdd()