Searched defs:callerIdentity (Results 1 - 8 of 8) 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.java40 Object callerIdentity,
42 super(dispatcher, callerIdentity);
39 AudioPlaybackQueueItem(UtteranceProgressDispatcher dispatcher, Object callerIdentity, Context context, Uri uri, AudioOutputParams audioParams) argument
H A DPlaybackSynthesisCallback.java54 UtteranceProgressDispatcher dispatcher, Object callerIdentity,
60 mCallerIdentity = callerIdentity;
53 PlaybackSynthesisCallback(AudioOutputParams audioParams, AudioPlaybackHandler audioTrackHandler, UtteranceProgressDispatcher dispatcher, Object callerIdentity, 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 DFileSynthesisCallback.java58 Object callerIdentity, boolean clientIsUsingV2) {
62 mCallerIdentity = callerIdentity;
57 FileSynthesisCallback(FileChannel fileChannel, UtteranceProgressDispatcher dispatcher, Object callerIdentity, boolean clientIsUsingV2) argument
H A DTextToSpeechService.java472 private synchronized SpeechItem maybeRemoveCurrentSpeechItem(Object callerIdentity) { argument
474 (mCurrentSpeechItem.getCallerIdentity() == callerIdentity)) {
555 public int stopForApp(Object callerIdentity) { argument
556 if (callerIdentity == null) {
560 removeCallbacksAndMessages(callerIdentity);
568 SpeechItem current = maybeRemoveCurrentSpeechItem(callerIdentity);
574 mAudioPlaybackHandler.stopForApp(callerIdentity);
824 SpeechItemV1(Object callerIdentity, int callerUid, int callerPid, argument
826 super(callerIdentity, callerUid, callerPid);
864 public SynthesisSpeechItemV1(Object callerIdentity, in argument
968 SynthesisToFileOutputStreamSpeechItemV1(Object callerIdentity, int callerUid, int callerPid, Bundle params, String utteranceId, CharSequence text, FileOutputStream fileOutputStream) argument
996 AudioSpeechItemV1(Object callerIdentity, int callerUid, int callerPid, Bundle params, String utteranceId, Uri uri) argument
1033 SilenceSpeechItem(Object callerIdentity, int callerUid, int callerPid, String utteranceId, long duration) argument
1070 LoadLanguageItem(Object callerIdentity, int callerUid, int callerPid, String language, String country, String variant) argument
1100 LoadVoiceItem(Object callerIdentity, int callerUid, int callerPid, String voiceName) argument
1348 dispatchOnStop(Object callerIdentity, String utteranceId) argument
1358 dispatchOnSuccess(Object callerIdentity, String utteranceId) argument
1368 dispatchOnStart(Object callerIdentity, String utteranceId) argument
1379 dispatchOnError(Object callerIdentity, String utteranceId, int errorCode) argument
[all...]

Completed in 179 milliseconds