Home
last modified time | relevance | path

Searched refs:VOICE_INTERACTION_KEY_COMMAND (Results 1 – 9 of 9) sorted by relevance

/cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/
DMainInteractionSessionService.java37 String command = args != null ? args.getString(Utils.VOICE_INTERACTION_KEY_COMMAND) : null; in onNewSession()
DDirectActionsSession.java88 final String command = cmdArgs.getString(Utils.VOICE_INTERACTION_KEY_COMMAND); in onShow()
/cts/tests/tests/voiceinteraction/src/android/voiceinteraction/cts/testcore/
DVoiceInteractionSessionControl.java89 command.putString(Utils.VOICE_INTERACTION_KEY_COMMAND, action); in executeCommand()
/cts/tests/tests/voiceinteraction/testapp/src/android/voiceinteraction/testapp/
DTestVisibleActivity.java66 final String command = cmdArgs.getString(Utils.VOICE_INTERACTION_KEY_COMMAND); in onResume()
DDirectActionsActivity.java61 final String command = cmdArgs.getString(Utils.VOICE_INTERACTION_KEY_COMMAND); in onResume()
/cts/tests/tests/voiceinteraction/src/android/voiceinteraction/cts/
DVoiceInteractionSessionVisibleActivityTest.java352 command.putString(Utils.VOICE_INTERACTION_KEY_COMMAND, action); in executeRemoteCommand()
DDirectActionsTest.java314 command.putString(Utils.VOICE_INTERACTION_KEY_COMMAND, action); in executeRemoteCommand()
DVoiceInteractionServiceTest.java294 args.putString(Utils.VOICE_INTERACTION_KEY_COMMAND, "startAssistantActivity"); in startSessionForStartAssistantActivity()
/cts/tests/tests/voiceinteraction/common/src/android/voiceinteraction/common/
DUtils.java231 public static final String VOICE_INTERACTION_KEY_COMMAND = "command"; field in Utils