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

  /packages/services/Telecomm/src/com/android/server/telecom/
CallsManagerListenerBase.java 49 public void onIncomingCallRejected(Call call, boolean rejectWithMessage, String textMessage) {
RespondViaSmsManager.java 144 public void onIncomingCallRejected(Call call, boolean rejectWithMessage, String textMessage) {
151 textMessage, subId);
184 private void rejectCallWithMessage(Context context, String phoneNumber, String textMessage,
186 if (textMessage != null) {
194 intent.putExtra(Intent.EXTRA_TEXT, textMessage);
InCallAdapter.java 76 String textMessage = (String) args.arg2;
78 mCallsManager.rejectCall(call, rejectWithMessage, textMessage);
228 public void rejectCall(String callId, boolean rejectWithMessage, String textMessage) {
229 Log.d(this, "rejectCall(%s,%b,%s)", callId, rejectWithMessage, textMessage);
234 args.arg2 = textMessage;
CallsManager.java 69 void onIncomingCallRejected(Call call, boolean rejectWithMessage, String textMessage);
679 void rejectCall(Call call, boolean rejectWithMessage, String textMessage) {
684 listener.onIncomingCallRejected(call, rejectWithMessage, textMessage);
686 call.reject(rejectWithMessage, textMessage);
    [all...]
Ringer.java 119 public void onIncomingCallRejected(Call call, boolean rejectWithMessage, String textMessage) {
Call.java     [all...]
  /frameworks/base/telecomm/java/android/telecom/
InCallAdapter.java 64 * @param textMessage An optional text message with which to respond.
66 public void rejectCall(String callId, boolean rejectWithMessage, String textMessage) {
68 mAdapter.rejectCall(callId, rejectWithMessage, textMessage);
Call.java 579 * @param textMessage An optional text message with which to respond.
581 public void reject(boolean rejectWithMessage, String textMessage) {
582 mInCallAdapter.rejectCall(mTelecomCallId, rejectWithMessage, textMessage);
    [all...]
  /frameworks/base/telecomm/java/com/android/internal/telecom/
IInCallAdapter.aidl 31 void rejectCall(String callId, boolean rejectWithMessage, String textMessage);
  /packages/apps/InCallUI/src/com/android/incallui/
AnswerFragment.java 278 final String textMessage = et.getText().toString().trim();
280 getPresenter().rejectCallWithMessage(textMessage);

Completed in 122 milliseconds