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.java309 public static CallerInfoAsyncQuery startQuery(int token, Context context, Uri contactRef, in startQuery() argument
313 c.allocate(context, contactRef); in startQuery()
315 … if (DBG) Rlog.d(LOG_TAG, "starting query for URI: " + contactRef + " handler: " + c.toString()); in startQuery()
323 c.mHandler.startQuery(token, cw, contactRef, null, null, null, null); in startQuery()
349 Uri contactRef; in startQuery() local
358 contactRef = Data.CONTENT_URI; in startQuery()
381 contactRef = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(number)); in startQuery()
387 Rlog.d(LOG_TAG, "==> contactRef: " + sanitizeUriToString(contactRef)); in startQuery()
397 c.allocate(context, contactRef); in startQuery()
416 contactRef, // uri in startQuery()
[all …]
DCallerInfo.java158 public static CallerInfo getCallerInfo(Context context, Uri contactRef, Cursor cursor) { in getCallerInfo() argument
210 columnIndex = getColumnIndexForPersonId(contactRef, cursor); in getCallerInfo()
216 Rlog.w(TAG, "Couldn't find person_id column for " + contactRef); in getCallerInfo()
243 info.contactRefUri = contactRef; in getCallerInfo()
256 public static CallerInfo getCallerInfo(Context context, Uri contactRef) { in getCallerInfo() argument
258 return getCallerInfo(context, contactRef, in getCallerInfo()
259 context.getContentResolver().query(contactRef, null, null, null, null)); in getCallerInfo()
458 private static int getColumnIndexForPersonId(Uri contactRef, Cursor cursor) { in getColumnIndexForPersonId() argument
478 + contactRef + "'..."); in getColumnIndexForPersonId()
483 String url = contactRef.toString(); in getColumnIndexForPersonId()