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

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfoAsyncQuery.java263 public static CallerInfoAsyncQuery startQuery(int token, Context context, Uri contactRef, argument
267 c.allocate(context, contactRef);
269 if (DBG) log("starting query for URI: " + contactRef + " handler: " + c.toString());
277 c.mHandler.startQuery (token, cw, contactRef, null, null, null, null);
288 Uri contactRef = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(number));
291 c.allocate(context, contactRef);
310 c.mHandler.startQuery (token, cw, contactRef, null, null, null, null);
336 private void allocate (Context context, Uri contactRef) { argument
337 if ((context == null) || (contactRef == null)){
342 mHandler.mQueryUri = contactRef;
[all...]
H A DCallerInfo.java116 * @param contactRef the URI to attach to this CallerInfo object
121 public static CallerInfo getCallerInfo(Context context, Uri contactRef, Cursor cursor) { argument
176 final String mimeType = context.getContentResolver().getType(contactRef);
193 Log.e(TAG, "Column missing for " + contactRef);
217 info.contactRefUri = contactRef;
226 * @param contactRef the URI used to lookup caller id
230 public static CallerInfo getCallerInfo(Context context, Uri contactRef) { argument
232 return getCallerInfo(context, contactRef,
233 context.getContentResolver().query(contactRef, null, null, null, null));

Completed in 65 milliseconds