• Home
  • Raw
  • Download

Lines Matching refs:info

173     CallerInfo info = new CallerInfo();  in getCallerInfo()  local
174 info.cachedPhoto = null; in getCallerInfo()
175 info.contactExists = false; in getCallerInfo()
176 info.contactRefUri = contactRef; in getCallerInfo()
177 info.isCachedPhotoCurrent = false; in getCallerInfo()
178 info.name = null; in getCallerInfo()
179 info.needUpdate = false; in getCallerInfo()
180 info.numberLabel = null; in getCallerInfo()
181 info.numberType = 0; in getCallerInfo()
182 info.phoneLabel = null; in getCallerInfo()
183 info.photoResource = 0; in getCallerInfo()
184 info.userType = ContactsUtils.USER_TYPE_CURRENT; in getCallerInfo()
189 return info; in getCallerInfo()
209 info.phoneNumber = cursor.getString(columnIndex); in getCallerInfo()
211 return info; in getCallerInfo()
218 info.name = normalize(cursor.getString(columnIndex)); in getCallerInfo()
224 info.normalizedNumber = cursor.getString(columnIndex); in getCallerInfo()
232 info.numberType = cursor.getInt(typeColumnIndex); in getCallerInfo()
233 info.numberLabel = cursor.getString(columnIndex); in getCallerInfo()
234 info.phoneLabel = in getCallerInfo()
235 Phone.getTypeLabel(context.getResources(), info.numberType, info.numberLabel) in getCallerInfo()
243 info.lookupKeyOrNull = cursor.getString(columnIndex); in getCallerInfo()
251 info.contactIdOrZero = contactId; in getCallerInfo()
252 Log.v(TAG, "==> got info.contactIdOrZero: " + info.contactIdOrZero); in getCallerInfo()
265 info.contactDisplayPhotoUri = Uri.parse(cursor.getString(columnIndex)); in getCallerInfo()
267 info.contactDisplayPhotoUri = null; in getCallerInfo()
276 info.contactRingtoneUri = Uri.EMPTY; in getCallerInfo()
278 info.contactRingtoneUri = Uri.parse(cursor.getString(columnIndex)); in getCallerInfo()
281 info.contactRingtoneUri = null; in getCallerInfo()
287 info.shouldSendToVoicemail = (columnIndex != -1) && ((cursor.getInt(columnIndex)) == 1); in getCallerInfo()
288 info.contactExists = true; in getCallerInfo()
289 info.contactLookupResultType = ContactLookupResult.Type.LOCAL_CONTACT; in getCallerInfo()
304 info.userType = ContactsUtils.determineUserType(directoryId, contactId); in getCallerInfo()
306 info.nameAlternative = in getCallerInfo()
308 context, info.lookupKeyOrNull, info.userType, directoryId); in getCallerInfo()
311 return info; in getCallerInfo()