Lines Matching refs:ci

604                         CallerInfo ci = (CallerInfo) o;
606 ci.cnapName = conn.getCnapName();
607 ci.numberPresentation = conn.getNumberPresentation();
608 ci.namePresentation = conn.getCnapNamePresentation();
610 + "CNAP name=" + ci.cnapName
611 + ", Number/Name Presentation=" + ci.numberPresentation);
612 if (DBG) log(" ==> Got CallerInfo; updating display: ci = " + ci);
613 updateDisplayForPerson(ci, presentation, false, call, conn);
615 CallerInfo ci = ((PhoneUtils.CallerInfoToken) o).currentInfo;
617 + "CNAP name=" + ci.cnapName
618 + ", Number/Name Presentation=" + ci.numberPresentation);
619 if (DBG) log(" ==> Got CallerInfoToken; updating display: ci = " + ci);
620 updateDisplayForPerson(ci, presentation, true, call, conn);
659 public void onQueryComplete(int token, Object cookie, CallerInfo ci) {
660 if (DBG) log("onQueryComplete: token " + token + ", cookie " + cookie + ", ci " + ci);
684 + ", contactExists=" + ci.contactExists);
687 // CallerInfo (for CNAP). Therefore if ci.contactExists then use the ci passed in.
689 if (ci.contactExists) {
690 updateDisplayForPerson(ci, PhoneConstants.PRESENTATION_ALLOWED, false, call, conn);
698 ((TextView) cookie).setText(PhoneUtils.getCompactNameFromCallerInfo(ci, mContext));
1504 CallerInfo ci = null;
1520 ci = (CallerInfo) o;
1522 ci = ((PhoneUtils.CallerInfoToken) o).currentInfo;
1527 if (ci != null) {
1528 photoImageResource = ci.photoResource;
1541 if (!showCachedImage(mPhoto, ci) && (mPhotoTracker.getPhotoState() ==
1556 new AsyncLoadCookie(mPhoto, ci, null));
1583 private static final boolean showCachedImage(ImageView view, CallerInfo ci) {
1584 if ((ci != null) && ci.isCachedPhotoCurrent) {
1585 if (ci.cachedPhoto != null) {
1586 showImage(view, ci.cachedPhoto);