HomeSort by relevance Sort by last modified time
    Searched refs:playDtmfTone (Results 1 - 15 of 15) sorted by null

  /frameworks/base/telecomm/java/android/telecom/
InCallAdapter.java 142 public void playDtmfTone(String callId, char digit) {
144 mAdapter.playDtmfTone(callId, digit);
153 * DTMF tones are played by calling {@link #playDtmfTone(String,char)}. If no DTMF tone is
RemoteConference.java 217 public void playDtmfTone(char digit) {
219 mConnectionService.playDtmfTone(mId, digit);
Call.java 448 public void playDtmfTone(char digit) {
449 mInCallAdapter.playDtmfTone(mTelecomCallId, digit);
456 * DTMF tones are played by calling {@link #playDtmfTone(char)}. If no DTMF tone is
RemoteConnection.java 639 public void playDtmfTone(char digit) {
642 mConnectionService.playDtmfTone(mConnectionId, digit);
652 * DTMF tones are played by calling {@link #playDtmfTone(char)}. If no DTMF tone is
ConnectionService.java 166 public void playDtmfTone(String callId, char digit) {
294 playDtmfTone((String) msg.obj, (char) msg.arg1);
635 private void playDtmfTone(String callId, char digit) {
636 Log.d(this, "playDtmfTone %s %c", callId, digit);
638 findConnectionForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
640 findConferenceForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
    [all...]
  /frameworks/base/telecomm/java/com/android/internal/telecom/
IInCallAdapter.aidl 43 void playDtmfTone(String callId, char digit);
IConnectionService.aidl 61 void playDtmfTone(String callId, char digit);
  /packages/apps/InCallUI/src/com/android/incallui/
DialpadPresenter.java 64 TelecomAdapter.getInstance().playDtmfTone(mCall.getId(), c);
TelecomAdapter.java 211 void playDtmfTone(String callId, char digit) {
213 getTelecommCallById(callId).playDtmfTone(digit);
215 Log.e(this, "error playDtmfTone, mPhone is null");
  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
TestConnectionManager.java 153 mRemote.playDtmfTone(c);
264 mRemote.playDtmfTone(c);
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallAdapter.java 90 mCallsManager.playDtmfTone(call, (char) msg.arg1);
92 Log.w(this, "playDtmfTone, unknown call id: %s", msg.obj);
241 public void playDtmfTone(String callId, char digit) {
242 Log.d(this, "playDtmfTone(%s,%c)", callId, digit);
Call.java 736 void playDtmfTone(char digit) {
738 Log.w(this, "playDtmfTone() request on a call without a connection service.");
740 Log.i(this, "Send playDtmfTone to connection service for call %s", this);
741 mConnectionService.playDtmfTone(this, digit);
    [all...]
CallsManager.java 579 void playDtmfTone(Call call, char digit) {
583 call.playDtmfTone(digit);
    [all...]
ConnectionServiceWrapper.java     [all...]
BluetoothPhoneService.java 240 callsManager.playDtmfTone(call, (char) request.param);
    [all...]

Completed in 1276 milliseconds