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

/packages/apps/InCallUI/src/com/android/incallui/
H A DDialpadPresenter.java64 TelecomAdapter.getInstance().playDtmfTone(mCall.getId(), c);
H A DTelecomAdapter.java181 void playDtmfTone(String callId, char digit) { method in class:TelecomAdapter
184 call.playDtmfTone(digit);
186 Log.e(this, "error playDtmfTone, call not in call list " + callId);
/packages/services/Telecomm/src/com/android/server/telecom/
H A DInCallAdapter.java83 public void playDtmfTone(String callId, char digit) { method in class:InCallAdapter
87 Log.d(this, "playDtmfTone(%s,%c)", callId, digit);
91 mCallsManager.playDtmfTone(call, digit);
93 Log.w(this, "playDtmfTone, unknown call id: %s", callId);
H A DCall.java968 void playDtmfTone(char digit) { method in class:Call
970 Log.w(this, "playDtmfTone() request on a call without a connection service.");
972 Log.i(this, "Send playDtmfTone to connection service for call %s", this);
973 mConnectionService.playDtmfTone(this, digit);
H A DConnectionServiceWrapper.java788 /** @see IConnectionService#playDtmfTone(String,char) */
789 void playDtmfTone(Call call, char digit) { method in class:ConnectionServiceWrapper
791 if (callId != null && isServiceValid("playDtmfTone")) {
793 logOutgoing("playDtmfTone %s %c", callId, digit);
794 mServiceInterface.playDtmfTone(callId, digit);
H A DBluetoothPhoneServiceImpl.java136 mCallsManager.playDtmfTone(call, (char) dtmf);
H A DCallsManager.java824 void playDtmfTone(Call call, char digit) { method in class:CallsManager
828 call.playDtmfTone(digit);
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
H A DTestConnectionManager.java153 mRemote.playDtmfTone(c);
265 mRemote.playDtmfTone(c);
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DConnectionServiceFixture.java123 public void playDtmfTone(String callId, char digit) throws RemoteException { } method in class:ConnectionServiceFixture.FakeConnectionService

Completed in 108 milliseconds