Searched refs:playDtmfTone (Results 1 - 9 of 9) sorted by relevance
/packages/apps/InCallUI/src/com/android/incallui/ |
H A D | DialpadPresenter.java | 64 TelecomAdapter.getInstance().playDtmfTone(mCall.getId(), c);
|
H A D | TelecomAdapter.java | 181 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 D | InCallAdapter.java | 83 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 D | Call.java | 968 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 D | ConnectionServiceWrapper.java | 788 /** @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 D | BluetoothPhoneServiceImpl.java | 136 mCallsManager.playDtmfTone(call, (char) dtmf);
|
H A D | CallsManager.java | 824 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 D | TestConnectionManager.java | 153 mRemote.playDtmfTone(c); 265 mRemote.playDtmfTone(c);
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
H A D | ConnectionServiceFixture.java | 123 public void playDtmfTone(String callId, char digit) throws RemoteException { } method in class:ConnectionServiceFixture.FakeConnectionService
|
Completed in 108 milliseconds