Home | History | Annotate | Download | only in incallui

Lines Matching defs:info

154         CallerInfo info = new CallerInfo();
155 info.photoResource = 0;
156 info.phoneLabel = null;
157 info.numberType = 0;
158 info.numberLabel = null;
159 info.cachedPhoto = null;
160 info.isCachedPhotoCurrent = false;
161 info.contactExists = false;
176 info.name = cursor.getString(columnIndex);
182 info.phoneNumber = cursor.getString(columnIndex);
188 info.normalizedNumber = cursor.getString(columnIndex);
196 info.numberType = cursor.getInt(typeColumnIndex);
197 info.numberLabel = cursor.getString(columnIndex);
198 info.phoneLabel = Phone.getDisplayLabel(context,
199 info.numberType, info.numberLabel)
207 info.person_id = cursor.getLong(columnIndex);
208 Log.v(TAG, "==> got info.person_id: " + info.person_id);
221 info.contactRingtoneUri = Uri.parse(cursor.getString(columnIndex));
223 info.contactRingtoneUri = null;
229 info.shouldSendToVoicemail = (columnIndex != -1) &&
231 info.contactExists = true;
236 info.needUpdate = false;
237 info.name = normalize(info.name);
238 info.contactRefUri = contactRef;
240 return info;
259 * for the matching caller id info.
264 * a matching number is not found, then a generic caller info is returned,
285 CallerInfo info = getCallerInfo(context, contactUri);
286 info = doSecondaryLookupIfNecessary(context, number, info);
290 if (TextUtils.isEmpty(info.phoneNumber)) {
291 info.phoneNumber = number;
294 return info;
338 CallerInfo info = getCallerInfo(context, number);
341 if (info != null) {
342 String name = info.name;
357 * @return true if the caller info is an emergency number.
364 * @return true if the caller info is a voicemail number.
439 * it's run from the UI thread (see comments below for more info.)