Searched refs:contactRef (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/telecomm/java/android/telecom/ |
D | CallerInfoAsyncQuery.java | 405 public static CallerInfoAsyncQuery startQuery(int token, Context context, Uri contactRef, in startQuery() argument 409 c.allocate(context, contactRef); in startQuery() 411 … if (DBG) Log.d(LOG_TAG, "starting query for URI: " + contactRef + " handler: " + c.toString()); in startQuery() 419 c.mHandler.startQuery(token, cw, contactRef, null, null, null, null); in startQuery() 464 final Uri contactRef = PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI.buildUpon() in startQuery() local 471 Log.d(LOG_TAG, "==> contactRef: " + sanitizeUriToString(contactRef)); in startQuery() 475 c.allocate(context, contactRef); in startQuery() 505 contactRef, // uri in startQuery() 534 private void allocate(Context context, Uri contactRef) { in allocate() argument 535 if ((context == null) || (contactRef == null)){ in allocate() [all …]
|
D | CallerInfo.java | 208 public static CallerInfo getCallerInfo(Context context, Uri contactRef, Cursor cursor) { in getCallerInfo() argument 261 columnIndex = getColumnIndexForPersonId(contactRef, cursor); in getCallerInfo() 275 Log.w(TAG, "Couldn't find contact_id column for " + contactRef); in getCallerInfo() 336 info.contactRefUri = contactRef; in getCallerInfo() 352 public static CallerInfo getCallerInfo(Context context, Uri contactRef) { in getCallerInfo() argument 357 info = getCallerInfo(context, contactRef, in getCallerInfo() 358 cr.query(contactRef, null, null, null, null)); in getCallerInfo() 600 private static int getColumnIndexForPersonId(Uri contactRef, Cursor cursor) { in getColumnIndexForPersonId() argument 620 + contactRef + "'..."); in getColumnIndexForPersonId() 625 String url = contactRef.toString(); in getColumnIndexForPersonId()
|