HomeSort by relevance Sort by last modified time
    Searched defs:InCallTonePlayer (Results 1 - 3 of 3) sorted by null

  /packages/apps/Dialer/java/com/android/incallui/ringtone/
InCallTonePlayer.java 33 public class InCallTonePlayer {
44 * Creates a new InCallTonePlayer.
52 public InCallTonePlayer(
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallTonePlayer.java 31 * instance using InCallTonePlayer.Factory (passing in the TONE_* constant for the tone you want)
34 public class InCallTonePlayer extends Thread {
56 public InCallTonePlayer createPlayer(int tone) {
57 return new InCallTonePlayer(tone, mCallAudioManager,
127 private InCallTonePlayer(
247 // playing. See CallNotifier.InCallTonePlayer.
  /packages/services/Telephony/src/com/android/phone/
CallNotifier.java 222 int toneToPlay = InCallTonePlayer.TONE_VOICE_PRIVACY;
223 new InCallTonePlayer(toneToPlay).start();
231 int toneToPlay = InCallTonePlayer.TONE_VOICE_PRIVACY;
232 new InCallTonePlayer(toneToPlay).start();
280 * To use, just instantiate a new InCallTonePlayer
289 * Instead, just start the InCallTonePlayer, which will automatically
293 private class InCallTonePlayer extends Thread {
326 InCallTonePlayer(int toneId) {
334 log("InCallTonePlayer.run(toneId = " + mToneId + ")...");
425 "InCallTonePlayer: Exception caught while creating ToneGenerator: " + e)
    [all...]

Completed in 150 milliseconds