Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/com/android/internal/telephony/
DCallerInfoAsyncQuery.java400 public static CallerInfoAsyncQuery startQuery(int token, Context context, Uri contactRef, in startQuery() argument
404 c.allocate(context, contactRef); in startQuery()
406 … if (DBG) Rlog.d(LOG_TAG, "starting query for URI: " + contactRef + " handler: " + c.toString()); in startQuery()
414 c.mHandler.startQuery(token, cw, contactRef, null, null, null, null); in startQuery()
459 final Uri contactRef = PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI.buildUpon() in startQuery() local
466 Rlog.d(LOG_TAG, "==> contactRef: " + sanitizeUriToString(contactRef)); in startQuery()
470 c.allocate(context, contactRef); in startQuery()
490 contactRef, // uri in startQuery()
519 private void allocate(Context context, Uri contactRef) { in allocate() argument
520 if ((context == null) || (contactRef == null)){ in allocate()
[all …]
DCallerInfo.java184 public static CallerInfo getCallerInfo(Context context, Uri contactRef, Cursor cursor) { in getCallerInfo() argument
237 columnIndex = getColumnIndexForPersonId(contactRef, cursor); in getCallerInfo()
251 Rlog.w(TAG, "Couldn't find contact_id column for " + contactRef); in getCallerInfo()
312 info.contactRefUri = contactRef; in getCallerInfo()
326 public static CallerInfo getCallerInfo(Context context, Uri contactRef) { in getCallerInfo() argument
331 info = getCallerInfo(context, contactRef, in getCallerInfo()
332 cr.query(contactRef, null, null, null, null)); in getCallerInfo()
530 private static int getColumnIndexForPersonId(Uri contactRef, Cursor cursor) { in getColumnIndexForPersonId() argument
550 + contactRef + "'..."); in getColumnIndexForPersonId()
555 String url = contactRef.toString(); in getColumnIndexForPersonId()