Home
last modified time | relevance | path

Searched refs:handle1 (Results 1 – 2 of 2) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/
DCallsManager.java719 private boolean areHandlesEqual(Uri handle1, Uri handle2) { in areHandlesEqual() argument
720 if (handle1 == null || handle2 == null) { in areHandlesEqual()
721 return handle1 == handle2; in areHandlesEqual()
724 if (!TextUtils.equals(handle1.getScheme(), handle2.getScheme())) { in areHandlesEqual()
728 final String number1 = PhoneNumberUtils.normalizeNumber(handle1.getSchemeSpecificPart()); in areHandlesEqual()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java6159 String handle1 = "test@gmail.com"; in testSingleStatusUpdateRowPerContact() local
6162 insertImHandle(rawContactId1, protocol1, null, handle1); in testSingleStatusUpdateRowPerContact()
6164 insertStatusUpdate(protocol1, null, handle1, StatusUpdates.AVAILABLE, "Green", in testSingleStatusUpdateRowPerContact()
6166 insertStatusUpdate(protocol1, null, handle1, StatusUpdates.AWAY, "Yellow", in testSingleStatusUpdateRowPerContact()
6168 insertStatusUpdate(protocol1, null, handle1, StatusUpdates.INVISIBLE, "Red", in testSingleStatusUpdateRowPerContact()