Searched refs:tone (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DToneSettings.java28 public Tone tone; field in class:ToneSettings
31 public ToneSettings(Duration duration, Tone tone, boolean vibrate) { argument
33 this.tone = tone;
39 tone = in.readParcelable(null);
49 dest.writeParcelable(tone, 0);
H A DCommandParams.java83 Tone tone, Duration duration, boolean vibrate) {
86 this.settings = new ToneSettings(duration, tone, vibrate);
82 PlayToneParams(CommandDetails cmdDet, TextMessage textMsg, Tone tone, Duration duration, boolean vibrate) argument
H A DCommandParamsFactory.java288 // parse tone duration
752 Tone tone = null;
765 tone = Tone.fromInt(toneVal);
777 // parse tone duration
792 mCmdParams = new PlayToneParams(cmdDet, textMsg, tone, duration, vibrate);
/frameworks/base/media/libstagefright/codecs/amrnb/common/include/
H A Dvad1.h115 /* Note that each of the following three variables (vadreg, pitch and tone)
120 Word16 tone; /* flags for tone detection */ member in struct:__anon312
/frameworks/base/media/libstagefright/codecs/amrnb/common/src/
H A Dvad1.cpp707 tone: flags indicating presence of a tone
778 /* if fullband pitch or tone have been detected for a while, initialize stat_count */
780 ((Word16)(st->tone & 0x7c00) == 0x7c00))
1735 state->tone = 0;
1958 Purpose : Set tone flag if pitch gain is high. This is used to detect
1960 Inputs : tone: flags indicating presence of a tone
1961 Outputs : tone: flags indicating presence of a tone
[all...]
/frameworks/base/libs/audioflinger/
H A DAudioPolicyService.h106 virtual status_t startTone(ToneGenerator::tone_type tone, AudioSystem::stream_type stream);
116 // Thread used for tone playback and to send audio config commands to audio flinger
117 // For tone playback, using a separate thread is necessary to avoid deadlock with mLock because startTone()
118 // and stopTone() are normally called with mLock locked and requesting a tone start or stop will cause
126 // commands for tone AudioCommand
153 // descriptor for requested tone playback event
172 int mType; // tone type (START_TONE only)
197 ToneGenerator *mpToneGenerator; // the tone generator
210 sp <AudioCommandThread> mTonePlaybackThread; // tone playback thread
H A DAudioPolicyService.cpp71 // start tone playback thread
542 status_t AudioPolicyService::startTone(ToneGenerator::tone_type tone, AudioSystem::stream_type stream) argument
544 mTonePlaybackThread->startToneCommand(tone, stream);
605 LOGV("AudioCommandThread() processing start tone %d on stream %d",
616 LOGV("AudioCommandThread() processing stop tone");
721 LOGV("AudioCommandThread() adding tone start type %d, stream %d", type, stream);
733 LOGV("AudioCommandThread() adding tone stop");

Completed in 209 milliseconds