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

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
CallerInfoIntegrationTest.java 25 import com.android.internal.telephony.CallerInfo;
28 * Integration test for {@link CallerInfo} and {@link ContactsProvider2}.
50 CallerInfo callerInfo = CallerInfo.getCallerInfo(getProvider().getContext(), "18004664411");
51 assertEquals("800-466-4411", callerInfo.phoneNumber);
52 assertEquals("Home", callerInfo.phoneLabel);
53 assertEquals("Hot Tamale", callerInfo.name);
54 assertEquals("ring", String.valueOf(callerInfo.contactRingtoneUri));
55 assertEquals(true, callerInfo.shouldSendToVoicemail)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
NotificationMgr.java 52 import com.android.internal.telephony.CallerInfo;
443 if ( (n.number.equals(CallerInfo.UNKNOWN_NUMBER)) ||
444 (n.number.equals(CallerInfo.PRIVATE_NUMBER)) ||
445 (n.number.equals(CallerInfo.PAYPHONE_NUMBER)) ) {
470 * {@link PhoneUtils#modifyForSpecialCnapCases(Context, CallerInfo, String, int)}.
    [all...]
CallNotifier.java 21 import com.android.internal.telephony.CallerInfo;
70 // Maximum time we allow the CallerInfo query to run,
117 // the state of the CallerInfo Query.
552 // the database to get the callerinfo to act as a key,
571 // query the callerinfo to try to get the ringer.
578 if (VDBG) log("- CallerInfo already up to date, using available data");
612 * Normally, this is called when the CallerInfo query completes (see
620 * CallerInfo query is taking too long. In that case, we log a
636 Log.w(LOG_TAG, "CallerInfo query took too long; falling back to default ringtone");
    [all...]
CallCard.java 47 import com.android.internal.telephony.CallerInfo;
76 public final CallerInfo callerInfo;
78 public AsyncLoadCookie(ImageView imageView, CallerInfo callerInfo, Call call) {
80 this.callerInfo = callerInfo;
547 CallerInfo info = PhoneUtils.getCallerInfo(getContext(), null /* conn */);
555 // callerinfo differs from what we've been requested to display.
571 CallerInfo info = null
    [all...]

Completed in 200 milliseconds