HomeSort by relevance Sort by last modified time
    Searched refs:tone (Results 1 - 25 of 26) sorted by null

1 2

  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
ToneSettings.java 28 public Tone tone; field in class:ToneSettings
31 public ToneSettings(Duration duration, Tone tone, boolean vibrate) {
33 this.tone = tone;
39 tone = in.readParcelable(null);
49 dest.writeParcelable(tone, 0);
CommandParams.java 83 Tone tone, Duration duration, boolean vibrate) {
86 this.settings = new ToneSettings(duration, tone, vibrate);
CommandParamsFactory.java 304 // parse tone duration
770 Tone tone = null; local
775 ComprehensionTlv ctlv = searchForTag(ComprehensionTlvTag.TONE, ctlvs);
783 tone = Tone.fromInt(toneVal);
795 // parse tone duration
810 mCmdParams = new PlayToneParams(cmdDet, textMsg, tone, duration, vibrate);
    [all...]
  /packages/apps/Stk/src/com/android/stk/
TonePlayer.java 23 import com.android.internal.telephony.cat.Tone;
30 private static final HashMap<Tone, Integer> mToneMap = new HashMap<Tone, Integer>();
33 // Map STK tone ids to the system tone ids.
34 mToneMap.put(Tone.DIAL, ToneGenerator.TONE_SUP_DIAL);
35 mToneMap.put(Tone.BUSY, ToneGenerator.TONE_SUP_BUSY);
36 mToneMap.put(Tone.CONGESTION, ToneGenerator.TONE_SUP_CONGESTION);
37 mToneMap.put(Tone.RADIO_PATH_ACK, ToneGenerator.TONE_SUP_RADIO_ACK);
38 mToneMap.put(Tone.RADIO_PATH_NOT_AVAILABLE, ToneGenerator.TONE_SUP_RADIO_NOTAVAIL)
    [all...]
ToneDialog.java 34 * Activity used for PLAY TONE command.
59 // Message id to signal tone duration timeout.
85 // Start playing tone and vibration
87 player.play(settings.tone);
124 settings = intent.getParcelableExtra("TONE");
  /external/icu4c/layout/
ThaiShaping.cpp 63 LEUnicode ThaiShaping::lowerRightTone(LEUnicode tone, le_uint8 glyphSet)
72 if (tone >= CH_MAITAIKHU && tone <= CH_NIKHAHIT) {
73 return lowerRightTones[glyphSet][tone - CH_MAITAIKHU];
76 return tone;
79 LEUnicode ThaiShaping::lowerLeftTone(LEUnicode tone, le_uint8 glyphSet)
88 if (tone >= CH_MAITAIKHU && tone <= CH_NIKHAHIT) {
89 return lowerLeftTones[glyphSet][tone - CH_MAITAIKHU];
92 return tone;
    [all...]
ThaiShaping.h 94 static LEUnicode lowerRightTone(LEUnicode tone, le_uint8 glyphSet);
95 static LEUnicode lowerLeftTone(LEUnicode tone, le_uint8 glyphSet);
96 static LEUnicode upperLeftTone(LEUnicode tone, le_uint8 glyphSet);
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
vad1.h 115 /* Note that each of the following three variables (vadreg, pitch and tone)
120 Word16 tone; /* flags for tone detection */ member in struct:__anon15107
  /hardware/libhardware_legacy/audio/
AudioPolicyCompatClient.h 68 virtual status_t startTone(ToneGenerator::tone_type tone, AudioSystem::stream_type stream);
AudioPolicyCompatClient.cpp 124 status_t AudioPolicyCompatClient::startTone(ToneGenerator::tone_type tone,
  /external/bluetooth/bluez/audio/
telephony-dummy.c 148 void telephony_transmit_dtmf_req(void *telephony_device, char tone)
150 DBG("telephony-dummy: transmit dtmf: %c", tone);
telephony.h 159 void telephony_transmit_dtmf_req(void *telephony_device, char tone);
telephony-ofono.c 416 void telephony_transmit_dtmf_req(void *telephony_device, char tone)
421 DBG("telephony-ofono: transmit dtmf: %c", tone);
429 tone_string = g_strdup_printf("%c", tone);
    [all...]
headset.c 218 g_string_append(gstr, "\"In-band ring tone capability\" ");
1023 char tone; local
1026 error("Too short string for DTMF tone");
1030 tone = buf[7];
1031 if (tone >= '#' && tone <= 'D')
1032 telephony_transmit_dtmf_req(device, tone);
    [all...]
telephony-maemo5.c 674 void telephony_transmit_dtmf_req(void *telephony_device, char tone)
677 char buf[2] = { tone, '\0' }, *buf_ptr = buf;
    [all...]
telephony-maemo6.c 703 void telephony_transmit_dtmf_req(void *telephony_device, char tone)
706 char buf[2] = { tone, '\0' }, *buf_ptr = buf;
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
vad1.cpp 707 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))
    [all...]
  /packages/apps/Phone/src/com/android/phone/
EmergencyDialer.java 84 /** The DTMF tone volume relative to other sounds in the stream */
203 // a local audio signal, and is not as important as the dtmf tone itself.
213 Log.w(LOG_TAG, "Exception caught while creating local tone generator: " + e);
438 // retrieve the DTMF tone play back setting.
446 // a local audio signal, and is not as important as the dtmf tone itself.
453 Log.w(LOG_TAG, "Exception caught while creating local tone generator: " + e);
515 * Plays the specified tone for TONE_LENGTH_MS milliseconds.
517 * The tone is played locally, using the audio stream for phone calls.
521 * @param tone a tone code from {@link ToneGenerator
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioPolicyInterface.h 218 // request the playback of a tone on the specified stream: used for instance to replace notification sounds when playing
220 virtual status_t startTone(ToneGenerator::tone_type tone, AudioSystem::stream_type stream) = 0;
  /external/chromium/third_party/libjingle/source/talk/session/phone/
call.cc 345 // Check to see if we have a queued tone
349 int tone = queued_dtmf_.front(); local
352 LOG(LS_INFO) << "Call::ContinuePlayDTMF(" << tone << ")";
357 voice_channel->PressDTMF(tone, true);
361 // Post a message to play the next tone or at least clear the playing_dtmf_
  /frameworks/base/services/audioflinger/
AudioPolicyService.h 133 virtual status_t startTone(audio_policy_tone_t tone, audio_stream_type_t stream);
143 // Thread used for tone playback and to send audio config commands to audio flinger
144 // For tone playback, using a separate thread is necessary to avoid deadlock with mLock because startTone()
145 // and stopTone() are normally called with mLock locked and requesting a tone start or stop will cause
153 // commands for tone AudioCommand
180 // descriptor for requested tone playback event
199 int mType; // tone type (START_TONE only)
224 ToneGenerator *mpToneGenerator; // the tone generator
281 sp <AudioCommandThread> mTonePlaybackThread; // tone playback thread
AudioPolicyService.cpp 76 // start tone playback thread
675 LOGV("AudioCommandThread() processing start tone %d on stream %d",
686 LOGV("AudioCommandThread() processing stop tone");
796 LOGV("AudioCommandThread() adding tone start type %d, stream %d", type, stream);
808 LOGV("AudioCommandThread() adding tone stop");
    [all...]
  /hardware/libhardware/include/hardware/
audio_policy.h 324 /* request the playback of a tone on the specified stream.
329 audio_policy_tone_t tone,
  /packages/apps/Contacts/src/com/android/contacts/dialpad/
DialpadFragment.java 96 /** The DTMF tone volume relative to other sounds in the stream */
489 // retrieve the DTMF tone play back setting.
497 // a local audio signal, and is not as important as the dtmf tone itself.
507 Log.w(TAG, "Exception caught while creating local tone generator: " + e);
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
term.h 504 #define tone CUR Strings[282] macro
    [all...]

Completed in 739 milliseconds

1 2