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

/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIInCallAdapter.aidl44 void playDtmfTone(String callId, char digit);
H A DIConnectionService.aidl65 void playDtmfTone(String callId, char digit);
/frameworks/base/telecomm/java/android/telecom/
H A DInCallAdapter.java145 public void playDtmfTone(String callId, char digit) { method in class:InCallAdapter
147 mAdapter.playDtmfTone(callId, digit);
156 * DTMF tones are played by calling {@link #playDtmfTone(String,char)}. If no DTMF tone is
H A DRemoteConference.java490 public void playDtmfTone(char digit) { method in class:RemoteConference
492 mConnectionService.playDtmfTone(mId, digit);
500 * @see #playDtmfTone
H A DRemoteConnection.java937 public void playDtmfTone(char digit) { method in class:RemoteConnection
940 mConnectionService.playDtmfTone(mConnectionId, digit);
950 * DTMF tones are played by calling {@link #playDtmfTone(char)}. If no DTMF tone is
H A DConnectionService.java212 public void playDtmfTone(String callId, char digit) {
374 playDtmfTone((String) msg.obj, (char) msg.arg1);
863 private void playDtmfTone(String callId, char digit) { method in class:ConnectionService
864 Log.d(this, "playDtmfTone %s %c", callId, digit);
866 findConnectionForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
868 findConferenceForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
H A DCall.java879 public void playDtmfTone(char digit) { method in class:Call
880 mInCallAdapter.playDtmfTone(mTelecomCallId, digit);
887 * DTMF tones are played by calling {@link #playDtmfTone(char)}. If no DTMF tone is

Completed in 189 milliseconds