Lines Matching defs:info
14 * Utility methods for contact and caller info related functionality
35 * This is called to get caller info for a call. This will return a CallerInfo
42 CallerInfo info = buildCallerInfo(context, call);
43 String number = info.phoneNumber;
47 if (info.numberPresentation == Call.PRESENTATION_ALLOWED) {
52 return info;
56 CallerInfo info = new CallerInfo();
60 info.cnapName = identification.getCnapName();
61 info.name = info.cnapName;
62 info.numberPresentation = identification.getNumberPresentation();
63 info.namePresentation = identification.getCnapNamePresentation();
70 info.forwardingNumber = numbers[1];
73 number = modifyForSpecialCnapCases(context, info, number, info.numberPresentation);
74 info.phoneNumber = number;
76 return info;