Home
last modified time | relevance | path

Searched refs:INTENT_ACTION (Results 1 – 15 of 15) sorted by relevance

/aosp12/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/tts/
H A DPreferredEngineEntryPreferenceControllerTest.java53 private static final String INTENT_ACTION = "test_action"; field in PreferredEngineEntryPreferenceControllerTest
84 Intent intent = new Intent(INTENT_ACTION); in setUp()
102 assertThat(intent.getAction()).isEqualTo(INTENT_ACTION); in performButtonClick_navigateToNextActivity()
/aosp12/frameworks/base/core/tests/PackageInstallerSessions/src/android/content/pm/
H A DPackageSessionTests.kt65 private const val INTENT_ACTION = "com.android.server.pm.test.test_app.action"
81 Intent(INTENT_ACTION),
92 context.registerReceiver(receiver, IntentFilter(INTENT_ACTION))
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/search/
H A DFakeSettingsFragment.java45 public static final String INTENT_ACTION = "raw action"; field in FakeSettingsFragment
87 data.intentAction = INTENT_ACTION;
H A DSettingsSearchIndexablesProviderTest.java110 assertThat(cursor.getString(9)).isEqualTo(FakeSettingsFragment.INTENT_ACTION); in testRawColumnFetched()
/aosp12/packages/apps/Settings/tests/unit/src/com/android/settings/search/
H A DFakeSettingsFragment.java44 public static final String INTENT_ACTION = "raw action"; field in FakeSettingsFragment
86 data.intentAction = INTENT_ACTION;
/aosp12/packages/apps/Car/Dialer/framework/fake/src/com/android/car/dialer/framework/
H A DAdbBroadcastReceiver.java37 private static final String INTENT_ACTION = "com.android.car.dialer.intent.action.adb"; field in AdbBroadcastReceiver
64 filter.addAction(INTENT_ACTION); in registerReceiver()
/aosp12/packages/apps/Car/Dialer/tests/unittests/src/com/android/car/dialer/bluetooth/
H A DBluetoothStateLiveDataTest.java49 private static final String INTENT_ACTION = BluetoothAdapter.ACTION_STATE_CHANGED; field in BluetoothStateLiveDataTest
100 intent.setAction(INTENT_ACTION); in testOnBluetoothAdapterStateChange()
H A DBluetoothPairListLiveDataTest.java54 private static final String INTENT_ACTION = BluetoothDevice.ACTION_BOND_STATE_CHANGED; field in BluetoothPairListLiveDataTest
109 intent.setAction(INTENT_ACTION); in testOnBluetoothConnected()
/aosp12/frameworks/base/core/tests/coretests/src/android/view/accessibility/
H A DAccessibilityManagerTest.java64 private static final String INTENT_ACTION = "TESTACTION"; field in AccessibilityManagerTest
67 InstrumentationRegistry.getTargetContext(), 0, new Intent(INTENT_ACTION),
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
H A DAccessibilityManagerServiceTest.java69 private static final String INTENT_ACTION = "TESTACTION"; field in AccessibilityManagerServiceTest
72 …InstrumentationRegistry.getTargetContext(), 0, new Intent(INTENT_ACTION), PendingIntent.FLAG_MUTAB…
/aosp12/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/indexing/
H A DIndexDatabaseHelper.java67 String INTENT_ACTION = "intent_action"; field
123 IndexColumns.INTENT_ACTION +
H A DDatabaseIndexingManager.java32 …c com.android.settings.intelligence.search.indexing.IndexDatabaseHelper.IndexColumns.INTENT_ACTION;
227 values.put(INTENT_ACTION, dataRow.intentAction); in insertIndexData()
/aosp12/frameworks/base/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/
H A DSoundTriggerTestService.java51 private static final String INTENT_ACTION = "com.android.intent.action.MANAGE_SOUND_TRIGGER"; field in SoundTriggerTestService
89 filter.addAction(INTENT_ACTION); in onCreate()
110 if (intent != null && INTENT_ACTION.equals(intent.getAction())) {
113 Log.e(TAG, "No 'command' specified in " + INTENT_ACTION);
/aosp12/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/query/
H A DDatabaseResultTask.java64 IndexColumns.INTENT_ACTION,
/aosp12/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastRecord.java441 proto.write(BroadcastRecordProto.INTENT_ACTION, intent.getAction()); in dumpDebug()