Searched refs:playDtmfTone (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/telecomm/java/android/telecom/
H A DInCallAdapter.java142 public void playDtmfTone(String callId, char digit) { method in class:InCallAdapter
144 mAdapter.playDtmfTone(callId, digit);
153 * DTMF tones are played by calling {@link #playDtmfTone(String,char)}. If no DTMF tone is
H A DRemoteConference.java428 public void playDtmfTone(char digit) { method in class:RemoteConference
430 mConnectionService.playDtmfTone(mId, digit);
438 * @see #playDtmfTone
H A DCall.java741 public void playDtmfTone(char digit) { method in class:Call
742 mInCallAdapter.playDtmfTone(mTelecomCallId, digit);
749 * DTMF tones are played by calling {@link #playDtmfTone(char)}. If no DTMF tone is
H A DRemoteConnection.java900 public void playDtmfTone(char digit) { method in class:RemoteConnection
903 mConnectionService.playDtmfTone(mConnectionId, digit);
913 * DTMF tones are played by calling {@link #playDtmfTone(char)}. If no DTMF tone is
H A DConnectionService.java192 public void playDtmfTone(String callId, char digit) {
320 playDtmfTone((String) msg.obj, (char) msg.arg1);
719 private void playDtmfTone(String callId, char digit) { method in class:ConnectionService
720 Log.d(this, "playDtmfTone %s %c", callId, digit);
722 findConnectionForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
724 findConferenceForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIInCallAdapter.aidl43 void playDtmfTone(String callId, char digit);
H A DIConnectionService.aidl61 void playDtmfTone(String callId, char digit);

Completed in 121 milliseconds