Lines Matching refs:ci
130 * @throws NullPointerException if lookupService or ci are null
133 CachedNumberLookupService lookupService, CallerInfo ci) {
135 info.name = ci.name;
136 info.type = ci.numberType;
137 info.label = ci.phoneLabel;
138 info.number = ci.phoneNumber;
139 info.normalizedNumber = ci.normalizedNumber;
140 info.photoUri = ci.contactDisplayPhotoUri;
141 info.userType = ci.userType;
144 cacheInfo.setLookupKey(ci.lookupKeyOrNull);
173 Context context, CallerInfo ci, String number, int presentation) {
174 // Obviously we return number if ci == null, but still return number if
177 if (ci == null || number == null) {
187 + " ci "
188 + ci);
197 ci.numberPresentation = TelecomManager.PRESENTATION_UNKNOWN;
205 if (ci.numberPresentation == TelecomManager.PRESENTATION_ALLOWED
206 || (ci.numberPresentation != presentation
211 ci.numberPresentation = TelecomManager.PRESENTATION_RESTRICTED;
214 ci.numberPresentation = TelecomManager.PRESENTATION_UNKNOWN;
221 + ci.numberPresentation);