Searched defs:callerIdentity (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/speech/tts/
H A DPlaybackQueueItem.java12 Object callerIdentity) {
14 mCallerIdentity = callerIdentity;
11 PlaybackQueueItem(TextToSpeechService.UtteranceProgressDispatcher dispatcher, Object callerIdentity) argument
H A DSilencePlaybackQueueItem.java26 Object callerIdentity, long silenceDurationMs) {
27 super(dispatcher, callerIdentity);
25 SilencePlaybackQueueItem(UtteranceProgressDispatcher dispatcher, Object callerIdentity, long silenceDurationMs) argument
H A DAudioPlaybackHandler.java58 public void stopForApp(Object callerIdentity) { argument
59 if (DBG) Log.d(TAG, "Removing all callback items for : " + callerIdentity);
60 removeWorkItemsFor(callerIdentity);
63 if (current != null && (current.getCallerIdentity() == callerIdentity)) {
102 private void removeWorkItemsFor(Object callerIdentity) { argument
107 if (item.getCallerIdentity() == callerIdentity) {
H A DAudioPlaybackQueueItem.java39 Object callerIdentity,
41 super(dispatcher, callerIdentity);
38 AudioPlaybackQueueItem(UtteranceProgressDispatcher dispatcher, Object callerIdentity, Context context, Uri uri, AudioOutputParams audioParams) argument
H A DPlaybackSynthesisCallback.java57 @NonNull UtteranceProgressDispatcher dispatcher, @NonNull Object callerIdentity,
63 mCallerIdentity = callerIdentity;
55 PlaybackSynthesisCallback(@onNull AudioOutputParams audioParams, @NonNull AudioPlaybackHandler audioTrackHandler, @NonNull UtteranceProgressDispatcher dispatcher, @NonNull Object callerIdentity, @NonNull AbstractEventLogger logger, boolean clientIsUsingV2) argument
H A DSynthesisPlaybackQueueItem.java68 Object callerIdentity, AbstractEventLogger logger) {
69 super(dispatcher, callerIdentity);
66 SynthesisPlaybackQueueItem(AudioOutputParams audioParams, int sampleRate, int audioFormat, int channelCount, UtteranceProgressDispatcher dispatcher, Object callerIdentity, AbstractEventLogger logger) argument
H A DTextToSpeechService.java476 private void startFlushingSpeechItems(Object callerIdentity) { argument
478 if (callerIdentity == null) {
481 mFlushedObjects.add(callerIdentity);
485 private void endFlushingSpeechItems(Object callerIdentity) { argument
487 if (callerIdentity == null) {
490 mFlushedObjects.remove(callerIdentity);
510 private synchronized SpeechItem maybeRemoveCurrentSpeechItem(Object callerIdentity) { argument
512 (mCurrentSpeechItem.getCallerIdentity() == callerIdentity)) {
597 public int stopForApp(final Object callerIdentity) { argument
598 if (callerIdentity
908 SpeechItemV1(Object callerIdentity, int callerUid, int callerPid, Bundle params, String utteranceId) argument
948 SynthesisSpeechItemV1(Object callerIdentity, int callerUid, int callerPid, Bundle params, String utteranceId, CharSequence text) argument
1054 SynthesisToFileOutputStreamSpeechItemV1(Object callerIdentity, int callerUid, int callerPid, Bundle params, String utteranceId, CharSequence text, FileOutputStream fileOutputStream) argument
1081 AudioSpeechItemV1(Object callerIdentity, int callerUid, int callerPid, Bundle params, String utteranceId, Uri uri) argument
1118 SilenceSpeechItem(Object callerIdentity, int callerUid, int callerPid, String utteranceId, long duration) argument
1155 LoadLanguageItem(Object callerIdentity, int callerUid, int callerPid, String language, String country, String variant) argument
1185 LoadVoiceItem(Object callerIdentity, int callerUid, int callerPid, String voiceName) argument
1433 dispatchOnStop(Object callerIdentity, String utteranceId, boolean started) argument
1443 dispatchOnSuccess(Object callerIdentity, String utteranceId) argument
1453 dispatchOnStart(Object callerIdentity, String utteranceId) argument
1463 dispatchOnError(Object callerIdentity, String utteranceId, int errorCode) argument
1474 dispatchOnBeginSynthesis(Object callerIdentity, String utteranceId, int sampleRateInHz, int audioFormat, int channelCount) argument
1484 dispatchOnAudioAvailable(Object callerIdentity, String utteranceId, byte[] buffer) argument
[all...]

Completed in 598 milliseconds