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

  /frameworks/base/telecomm/java/android/telecom/
ParcelableConnection.java 57 String callerDisplayName,
71 mCallerDisplayName = callerDisplayName;
162 String callerDisplayName = source.readString();
180 callerDisplayName,
ParcelableCall.java 68 String callerDisplayName,
88 mCallerDisplayName = callerDisplayName;
251 String callerDisplayName = source.readString();
275 callerDisplayName,
Connection.java 74 Connection c, String callerDisplayName, int presentation) {}
676 * @param callerDisplayName The new display name.
680 public final void setCallerDisplayName(String callerDisplayName, int presentation) {
681 Log.d(this, "setCallerDisplayName %s", callerDisplayName);
682 mCallerDisplayName = callerDisplayName;
685 l.onCallerDisplayNameChanged(this, callerDisplayName, presentation);
    [all...]
RemoteConnection.java 130 * @param callerDisplayName The new caller display name of the {@code RemoteConnection}.
135 RemoteConnection connection, String callerDisplayName, int presentation) {}
862 void setCallerDisplayName(String callerDisplayName, int presentation) {
863 mCallerDisplayName = callerDisplayName;
866 c.onCallerDisplayNameChanged(this, callerDisplayName, presentation);
ConnectionServiceAdapter.java 308 void setCallerDisplayName(String callId, String callerDisplayName, int presentation) {
311 adapter.setCallerDisplayName(callId, callerDisplayName, presentation);
ConnectionServiceAdapterServant.java 332 String connectionId, String callerDisplayName, int presentation) {
335 args.arg2 = callerDisplayName;
RemoteConnectionService.java 260 public void setCallerDisplayName(String callId, String callerDisplayName,
263 .setCallerDisplayName(callerDisplayName, presentation);
Call.java 260 String callerDisplayName,
273 mCallerDisplayName = callerDisplayName;
ConnectionService.java 438 Connection c, String callerDisplayName, int presentation) {
440 mAdapter.setCallerDisplayName(id, callerDisplayName, presentation);
    [all...]
  /frameworks/base/telecomm/java/com/android/internal/telecom/
IConnectionServiceAdapter.aidl 77 void setCallerDisplayName(String callId, String callerDisplayName, int presentation);
  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
TestConnectionManager.java 99 RemoteConnection connection, String callerDisplayName, int presentation) {
100 setCallerDisplayName(callerDisplayName, presentation);
  /packages/services/Telecomm/src/com/android/server/telecom/
InCallController.java 477 String callerDisplayName = call.getCallerDisplayNamePresentation() ==
499 callerDisplayName,
Call.java 439 void setCallerDisplayName(String callerDisplayName, int presentation) {
440 if (!TextUtils.equals(callerDisplayName, mCallerDisplayName) ||
442 mCallerDisplayName = callerDisplayName;
    [all...]
ConnectionServiceWrapper.java 539 String callId, String callerDisplayName, int presentation) {
540 logIncoming("setCallerDisplayName %s %s %d", callId, callerDisplayName, presentation);
544 args.arg2 = callerDisplayName;
    [all...]
  /packages/services/Telephony/src/com/android/phone/
PhoneInterfaceManager.java 176 public final String callerDisplayName;
179 String callerDisplayName) {
182 this.callerDisplayName = callerDisplayName;
    [all...]

Completed in 156 milliseconds