Searched defs:playDtmfTone (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/telecomm/java/android/telecom/
H A DInCallAdapter.java175 public void playDtmfTone(String callId, char digit) { method in class:InCallAdapter
177 mAdapter.playDtmfTone(callId, digit);
186 * DTMF tones are played by calling {@link #playDtmfTone(String,char)}. If no DTMF tone is
H A DRemoteConference.java492 public void playDtmfTone(char digit) { method in class:RemoteConference
494 mConnectionService.playDtmfTone(mId, digit, null /*Session.Info*/);
502 * @see #playDtmfTone
H A DConnectionService.java466 public void playDtmfTone(String callId, char digit, Session.Info sessionInfo) {
963 playDtmfTone((String) args.arg2, (char) args.arg1);
1693 private void playDtmfTone(String callId, char digit) { method in class:ConnectionService
1694 Log.d(this, "playDtmfTone %s %c", callId, digit);
1696 findConnectionForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
1698 findConferenceForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
H A DRemoteConnection.java993 public void playDtmfTone(char digit) { method in class:RemoteConnection
996 mConnectionService.playDtmfTone(mConnectionId, digit, null /*Session.Info*/);
1006 * DTMF tones are played by calling {@link #playDtmfTone(char)}. If no DTMF tone is
H A DCall.java1357 public void playDtmfTone(char digit) { method in class:Call
1358 mInCallAdapter.playDtmfTone(mTelecomCallId, digit);
1365 * DTMF tones are played by calling {@link #playDtmfTone(char)}. If no DTMF tone is

Completed in 49 milliseconds