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

  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfoAsyncQuery.java 309 public static CallerInfoAsyncQuery startQuery(int token, Context context, Uri contactRef,
313 c.allocate(context, contactRef);
315 if (DBG) Log.d(LOG_TAG, "starting query for URI: " + contactRef + " handler: " + c.toString());
323 c.mHandler.startQuery(token, cw, contactRef, null, null, null, null);
349 Uri contactRef;
358 contactRef = Data.CONTENT_URI;
381 contactRef = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(number));
387 Log.d(LOG_TAG, "==> contactRef: " + sanitizeUriToString(contactRef));
397 c.allocate(context, contactRef);
    [all...]
CallerInfo.java 128 * @param contactRef the URI to attach to this CallerInfo object
133 public static CallerInfo getCallerInfo(Context context, Uri contactRef, Cursor cursor) {
185 columnIndex = getColumnIndexForPersonId(contactRef, cursor);
191 Log.w(TAG, "Couldn't find person_id column for " + contactRef);
218 info.contactRefUri = contactRef;
227 * @param contactRef the URI used to lookup caller id
231 public static CallerInfo getCallerInfo(Context context, Uri contactRef) {
233 return getCallerInfo(context, contactRef,
234 context.getContentResolver().query(contactRef, null, null, null, null));
433 private static int getColumnIndexForPersonId(Uri contactRef, Cursor cursor)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
PhoneUtils.java 550 * @param contactRef that triggered the call. Typically a 'tel:'
560 String number, Uri contactRef, boolean isEmergencyCall,
646 if ((contactRef != null) && (contactRef.getScheme().equals(content))) {
649 connection.setUserData(contactRef);
655 ((CallerInfo) userDataObject).contactRefUri = contactRef;
658 contactRef;
668 if ((contactRef != null) && (contactRef.getScheme().equals(content))) {
669 info = CallerInfo.getCallerInfo(context, contactRef);
    [all...]

Completed in 149 milliseconds