HomeSort by relevance Sort by last modified time
    Searched defs:playDtmfTone (Results 1 - 11 of 11) 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 224 public void playDtmfTone(char digit) {
226 mConnectionService.playDtmfTone(mId, digit);
RemoteConnection.java 700 public void playDtmfTone(char digit) {
703 mConnectionService.playDtmfTone(mConnectionId, digit);
713 * DTMF tones are played by calling {@link #playDtmfTone(char)}. If no DTMF tone is
    [all...]
Call.java 614 public void playDtmfTone(char digit) {
615 mInCallAdapter.playDtmfTone(mTelecomCallId, digit);
622 * DTMF tones are played by calling {@link #playDtmfTone(char)}. If no DTMF tone is
    [all...]
ConnectionService.java 195 public void playDtmfTone(String callId, char digit) {
323 playDtmfTone((String) msg.obj, (char) msg.arg1);
673 private void playDtmfTone(String callId, char digit) {
674 Log.d(this, "playDtmfTone %s %c", callId, digit);
676 findConnectionForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
678 findConferenceForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
    [all...]
  /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);
240 public void playDtmfTone(String callId, char digit) {
241 Log.d(this, "playDtmfTone(%s,%c)", callId, digit);
ConnectionServiceWrapper.java     [all...]
Call.java 843 void playDtmfTone(char digit) {
845 Log.w(this, "playDtmfTone() request on a call without a connection service.");
847 Log.i(this, "Send playDtmfTone to connection service for call %s", this);
848 mConnectionService.playDtmfTone(this, digit);
    [all...]
CallsManager.java 695 void playDtmfTone(Call call, char digit) {
699 call.playDtmfTone(digit);
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
TelecomAdapter.java 209 void playDtmfTone(String callId, char digit) {
211 getTelecommCallById(callId).playDtmfTone(digit);
213 Log.e(this, "error playDtmfTone, mPhone is null");
  /prebuilts/sdk/system_current/
android.jar 

Completed in 88 milliseconds