Home
last modified time | relevance | path

Searched refs:playDtmfTone (Results 1 – 8 of 8) sorted by relevance

/packages/apps/InCallUI/src/com/android/incallui/
DTelecomAdapter.java211 void playDtmfTone(String callId, char digit) { in playDtmfTone() method in TelecomAdapter
213 getTelecommCallById(callId).playDtmfTone(digit); in playDtmfTone()
DDialpadPresenter.java64 TelecomAdapter.getInstance().playDtmfTone(mCall.getId(), c); in processDtmf()
/packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
DTestConnectionManager.java153 mRemote.playDtmfTone(c); in onPlayDtmfTone()
264 mRemote.playDtmfTone(c); in onPlayDtmfTone()
/packages/services/Telecomm/src/com/android/server/telecom/
DInCallAdapter.java90 mCallsManager.playDtmfTone(call, (char) msg.arg1); in handleMessage()
241 public void playDtmfTone(String callId, char digit) { in playDtmfTone() method in InCallAdapter
DCallsManager.java579 void playDtmfTone(Call call, char digit) { in playDtmfTone() method in CallsManager
583 call.playDtmfTone(digit); in playDtmfTone()
DCall.java736 void playDtmfTone(char digit) { in playDtmfTone() method in Call
741 mConnectionService.playDtmfTone(this, digit); in playDtmfTone()
DConnectionServiceWrapper.java759 void playDtmfTone(Call call, char digit) { in playDtmfTone() method in ConnectionServiceWrapper
764 mServiceInterface.playDtmfTone(callId, digit); in playDtmfTone()
DBluetoothPhoneService.java240 callsManager.playDtmfTone(call, (char) request.param);