Searched refs:voice (Results 1 - 25 of 35) sorted by relevance

12

/frameworks/base/core/java/android/service/voice/
H A DIVoiceInteractionService.aidl17 package android.service.voice;
H A DIVoiceInteractionSessionService.aidl17 package android.service.voice;
21 import android.service.voice.IVoiceInteractionSession;
H A DVoiceInteractionManagerInternal.java17 package android.service.voice;
30 * Start a new voice interaction session when requested from within an activity
38 * Returns whether the currently selected voice interaction service supports local voice
H A DIVoiceInteractionSession.aidl17 package android.service.voice;
H A DVoiceInteractionSessionService.java17 package android.service.voice;
37 * An active voice interaction session, initiated by a {@link VoiceInteractionService}.
H A DVoiceInteractionService.java17 package android.service.voice;
41 * Top-level service of the current global voice interactor, which is providing
45 * in the background to instigate voice interactions.
49 * in the associated {@link android.service.voice.VoiceInteractionSessionService} when
50 * an actual voice interaction is taking place, and that service should run in a
62 "android.service.voice.VoiceInteractionService";
68 * android.R.styleable#VoiceInteractionService voice-interaction-service}&gt;</code> tag.
126 * Called when a user has activated an affordance to launch voice assist from the Keyguard.
181 * Request that the associated {@link android.service.voice.VoiceInteractionSession} be
234 // This helps with cases where the voice interactio
[all...]
H A DVoiceInteractionServiceInfo.java17 package android.service.voice;
107 if (!"voice-interaction-service".equals(nodeName)) {
108 mParseError = "Meta-data does not start with voice-interaction-service tag";
138 mParseError = "Error parsing voice interation service meta-data: " + e;
139 Log.w(TAG, "error parsing voice interaction service meta-data", e);
142 mParseError = "Error parsing voice interation service meta-data: " + e;
143 Log.w(TAG, "error parsing voice interaction service meta-data", e);
146 mParseError = "Error parsing voice interation service meta-data: " + e;
147 Log.w(TAG, "error parsing voice interaction service meta-data", e);
H A DAlwaysOnHotwordDetector.java17 package android.service.voice;
331 * @param voiceInteractionService The current voice interaction service.
/frameworks/base/tests/Assist/src/com/android/test/assist/
H A DAssistInteractionSessionService.java20 import android.service.voice.VoiceInteractionSession;
21 import android.service.voice.VoiceInteractionSessionService;
H A DAssistInteractionService.java20 import android.service.voice.VoiceInteractionService;
H A DAssistInteractionSession.java26 import android.service.voice.VoiceInteractionSession;
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DMainInteractionSessionService.java20 import android.service.voice.VoiceInteractionSession;
21 import android.service.voice.VoiceInteractionSessionService;
H A DMainInteractionService.java22 import android.service.voice.AlwaysOnHotwordDetector;
23 import android.service.voice.AlwaysOnHotwordDetector.Callback;
24 import android.service.voice.AlwaysOnHotwordDetector.EventPayload;
25 import android.service.voice.VoiceInteractionService;
26 import android.service.voice.VoiceInteractionSession;
H A DTestInteractionActivity.java25 import android.service.voice.VoiceInteractionService;
56 Log.w(TAG, "Not running as a voice interaction!");
63 Log.w(TAG, "Not current voice interactor!");
H A DMainInteractionSession.java28 import android.service.voice.VoiceInteractionSession;
/frameworks/base/core/java/com/android/internal/app/
H A DIVoiceInteractionManagerService.aidl28 import android.service.voice.IVoiceInteractionService;
29 import android.service.voice.IVoiceInteractionSession;
92 * @return the component name for the currently active voice interaction service
100 * @param args the bundle to pass as arguments to the voice interaction session
120 * Indicates whether there is a voice session running (but not necessarily showing).
125 * Indicates whether the currently active voice interaction service is capable of handling the
131 * Indicates whether the currently active voice interaction service is capable of being launched
142 * Register a voice interaction listener.
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java119 * Denotes a failure caused by an unfinished download of the voice data.
375 * available voices. The format of each voice is: lang-COUNTRY-variant where COUNTRY and
378 * unavailable voices (ones that user can install). The format of each voice is:
407 * the TextToSpeech engine returns an String with sample text for requested voice
416 * The format of each voice is: lang-COUNTRY-variant where COUNTRY and variant are
424 * The format of each voice is: lang-COUNTRY-variant where COUNTRY and variant are
464 * caller indicates to the TextToSpeech engine which specific sets of voice data to
466 * The format of each voice is: lang-COUNTRY-variant where COUNTRY and variant are
469 * @deprecated Redundant functionality, checking for existence of specific sets of voice
589 * {@link TextToSpeech#getVoices()}, find a suitable network voice
1636 setVoice(final Voice voice) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManagerInternal.java26 import android.service.voice.IVoiceInteractionSession;
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerServiceImpl.java36 import android.service.voice.IVoiceInteractionService;
37 import android.service.voice.IVoiceInteractionSession;
38 import android.service.voice.VoiceInteractionService;
39 import android.service.voice.VoiceInteractionServiceInfo;
134 Slog.w(TAG, "Bad voice interaction service: " + mInfo.getParseError());
307 Slog.w(TAG, "Failed binding to voice interaction service " + mComponent);
313 Slog.w(TAG, "Not bound to voice interaction service " + mComponent);
349 Slog.w(TAG, "Not bound to voice interaction service " + mComponent);
H A DVoiceInteractionSessionConnection.java41 import android.service.voice.IVoiceInteractionSession;
42 import android.service.voice.IVoiceInteractionSessionService;
43 import android.service.voice.VoiceInteractionService;
44 import android.service.voice.VoiceInteractionSession;
207 Slog.w(TAG, "Failed binding to voice interaction session service "
H A DVoiceInteractionManagerService.java48 import android.service.voice.IVoiceInteractionService;
49 import android.service.voice.IVoiceInteractionSession;
50 import android.service.voice.VoiceInteractionManagerInternal;
51 import android.service.voice.VoiceInteractionService;
52 import android.service.voice.VoiceInteractionServiceInfo;
53 import android.service.voice.VoiceInteractionSession;
259 // the user to have the default voice interaction service enabled.
261 // supporting voice interaction services there.
336 // No voice interactor, we'll just set up a simple recognizer.
396 Slog.wtf(TAG, "Bad voice interactio
[all...]
/frameworks/base/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/
H A DEnrollmentUtil.java27 import android.service.voice.AlwaysOnHotwordDetector;
56 * Intent extra: The hint text to be shown on the voice keyphrase management UI.
61 * Intent extra: The voice locale to use while managing the keyphrase.
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DKeyphraseEnrollmentInfo.java27 import android.service.voice.AlwaysOnHotwordDetector;
57 * voice-enrollment-application}&gt;</code> tag.
77 * Intent extra: The hint text to be shown on the voice keyphrase management UI.
82 * Intent extra: The voice locale to use while managing the keyphrase.
107 // No application capable of enrolling for voice keyphrases is present.
137 String error = "error parsing voice enrollment meta-data for "
182 if (!"voice-enrollment-application".equals(nodeName)) {
183 String error = "Meta-data does not start with voice-enrollment-application tag for "
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistManager.java22 import android.service.voice.VoiceInteractionSession;
/frameworks/base/
H A Dcompiled-classes-phone3660 android.service.voice.AlwaysOnHotwordDetector
3661 android.service.voice.AlwaysOnHotwordDetector$Callback
3662 android.service.voice.AlwaysOnHotwordDetector$EventPayload
3663 android.service.voice.AlwaysOnHotwordDetector$MyHandler
3664 android.service.voice.AlwaysOnHotwordDetector$RefreshAvailabiltyTask
3665 android.service.voice.AlwaysOnHotwordDetector$SoundTriggerListener
3666 android.service.voice.IVoiceInteractionService
3667 android.service.voice.IVoiceInteractionService$Stub
3668 android.service.voice.IVoiceInteractionService$Stub$Proxy
3669 android.service.voice
[all...]

Completed in 787 milliseconds

12