Searched defs:InCallTonePlayer (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Dialer/InCallUI/src/com/android/incallui/ringtone/
H A DInCallTonePlayer.java36 public class InCallTonePlayer { class
47 * Creates a new InCallTonePlayer.
55 public InCallTonePlayer(ToneGeneratorFactory toneGeneratorFactory, PausableExecutor executor) { method in class:InCallTonePlayer
/packages/services/Telecomm/src/com/android/server/telecom/
H A DInCallTonePlayer.java28 * instance using InCallTonePlayer.Factory (passing in the TONE_* constant for the tone you want)
31 public class InCallTonePlayer extends Thread { class in inherits:Thread
51 public InCallTonePlayer createPlayer(int tone) {
52 return new InCallTonePlayer(tone, mCallAudioManager,
116 private InCallTonePlayer( method in class:InCallTonePlayer
234 // playing. See CallNotifier.InCallTonePlayer.
/packages/services/Telephony/src/com/android/phone/
H A DCallNotifier.java225 int toneToPlay = InCallTonePlayer.TONE_VOICE_PRIVACY;
226 new InCallTonePlayer(toneToPlay).start();
234 int toneToPlay = InCallTonePlayer.TONE_VOICE_PRIVACY;
235 new InCallTonePlayer(toneToPlay).start();
283 * To use, just instantiate a new InCallTonePlayer
292 * Instead, just start the InCallTonePlayer, which will automatically
296 private class InCallTonePlayer extends Thread { class in class:CallNotifier
329 InCallTonePlayer(int toneId) { method in class:CallNotifier.InCallTonePlayer
337 log("InCallTonePlayer.run(toneId = " + mToneId + ")...");
440 "InCallTonePlayer
[all...]

Completed in 300 milliseconds