OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InCallTonePlayer
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Dialer/InCallUI/src/com/android/incallui/ringtone/
InCallTonePlayer.java
36
public class
InCallTonePlayer
{
47
* Creates a new
InCallTonePlayer
.
55
public
InCallTonePlayer
(ToneGeneratorFactory toneGeneratorFactory, PausableExecutor executor) {
/packages/services/Telecomm/src/com/android/server/telecom/
InCallTonePlayer.java
28
* instance using
InCallTonePlayer
.Factory (passing in the TONE_* constant for the tone you want)
31
public class
InCallTonePlayer
extends Thread {
51
public
InCallTonePlayer
createPlayer(int tone) {
52
return new
InCallTonePlayer
(tone, mCallAudioManager,
116
private
InCallTonePlayer
(
234
// playing. See CallNotifier.
InCallTonePlayer
.
/packages/services/Telephony/src/com/android/phone/
CallNotifier.java
225
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 {
329
InCallTonePlayer
(int toneId) {
337
log("
InCallTonePlayer
.run(toneId = " + mToneId + ")...");
440
"
InCallTonePlayer
: Exception caught while creating ToneGenerator: " + e)
[
all
...]
Completed in 182 milliseconds