Home
last modified time | relevance | path

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

/frameworks/base/telecomm/java/android/telecom/
DCallerInfoAsyncQuery.java398 public static CallerInfoAsyncQuery startQuery(int token, Context context, Uri contactRef, in startQuery() argument
402 c.allocate(context, contactRef); in startQuery()
404 … if (DBG) Log.d(LOG_TAG, "starting query for URI: " + contactRef + " handler: " + c.toString()); in startQuery()
412 c.mHandler.startQuery(token, cw, contactRef, null, null, null, null); in startQuery()
457 final Uri contactRef = PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI.buildUpon() in startQuery() local
464 Log.d(LOG_TAG, "==> contactRef: " + sanitizeUriToString(contactRef)); in startQuery()
468 c.allocate(context, contactRef); in startQuery()
488 contactRef, // uri in startQuery()
517 private void allocate(Context context, Uri contactRef) { in allocate() argument
518 if ((context == null) || (contactRef == null)){ in allocate()
[all …]
DCallerInfo.java207 public static CallerInfo getCallerInfo(Context context, Uri contactRef, Cursor cursor) { in getCallerInfo() argument
260 columnIndex = getColumnIndexForPersonId(contactRef, cursor); in getCallerInfo()
274 Log.w(TAG, "Couldn't find contact_id column for " + contactRef); in getCallerInfo()
335 info.contactRefUri = contactRef; in getCallerInfo()
351 public static CallerInfo getCallerInfo(Context context, Uri contactRef) { in getCallerInfo() argument
356 info = getCallerInfo(context, contactRef, in getCallerInfo()
357 cr.query(contactRef, null, null, null, null)); in getCallerInfo()
598 private static int getColumnIndexForPersonId(Uri contactRef, Cursor cursor) { in getColumnIndexForPersonId() argument
618 + contactRef + "'..."); in getColumnIndexForPersonId()
623 String url = contactRef.toString(); in getColumnIndexForPersonId()