Searched refs:ci (Results 1 - 12 of 12) sorted by relevance

/packages/services/Telephony/src/com/android/phone/
H A DCallLogger.java63 final CallerInfo ci = getCallerInfoFromConnection(c); // May be null.
64 final String logNumber = getLogNumber(c, ci);
76 final int presentation = getPresentation(c, ci);
83 logCall(ci, logNumber, presentation, callLogType, date, duration);
110 public void logCall(CallerInfo ci, String number, int presentation, int callType, long start, argument
122 CallerInfo ci = null;
126 ci = (CallerInfo) o;
128 ci = CallerInfo.getCallerInfo(mApplication.getApplicationContext(), (Uri) o);
130 ci = ((PhoneUtils.CallerInfoToken) o).currentInfo;
132 return ci;
[all...]
H A DPhoneUtils.java1581 public void onQueryComplete(int token, Object cookie, CallerInfo ci) {
1587 if (DBG) log("- onQueryComplete: CallerInfo:" + ci);
1588 if (ci.contactExists || ci.isEmergencyNumber() || ci.isVoiceMailNumber()) {
1595 // Here 'ci' is a new CallerInfo instance read
1603 // fill 'ci' in. The same routine could be used in
1605 if (0 == ci.numberPresentation) {
1606 ci.numberPresentation = conn.getNumberPresentation();
1618 newCi.phoneNumber = ci
1635 getCompactNameFromCallerInfo(CallerInfo ci, Context context) argument
2093 modifyForSpecialCnapCases(Context context, CallerInfo ci, String number, int presentation) argument
[all...]
/packages/apps/InCallUI/src/com/android/incallui/
H A DCallerInfoUtils.java93 /* package */static String modifyForSpecialCnapCases(Context context, CallerInfo ci, argument
95 // Obviously we return number if ci == null, but still return number if
98 if (ci == null || number == null) return number;
102 + ", presentation=" + presentation + " ci " + ci);
112 ci.numberPresentation = TelecomManager.PRESENTATION_UNKNOWN;
120 if (ci.numberPresentation == TelecomManager.PRESENTATION_ALLOWED
121 || (ci.numberPresentation != presentation
126 ci.numberPresentation = TelecomManager.PRESENTATION_RESTRICTED;
129 ci
[all...]
H A DCallerInfoAsyncQuery.java68 public void onQueryComplete(int token, Object cookie, CallerInfo ci); argument
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DVoiceSearch.java94 ComponentInfo ci = ri.activityInfo != null ? ri.activityInfo : ri.serviceInfo;
96 return getContext().getPackageManager().getPackageInfo(ci.packageName, 0).versionCode;
98 Log.e(TAG, "Cannot find voice search package " + ci.packageName, e);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewIconCache.java48 final ComponentInfo ci = info.activityInfo != null ? info.activityInfo :
50 mComponentName = new ComponentName(ci.packageName, ci.name);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DWnnSentence.java59 Iterator<WnnClause> ci = clauses.iterator();
60 while (ci.hasNext()) {
61 WnnClause clause = ci.next();
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
H A DDeleteNonRequiredAppsTask.java179 ComponentInfo ci;
181 ci = ri.activityInfo;
183 ci = ri.serviceInfo;
185 ci = ri.providerInfo;
187 disableComponent(new ComponentName(ci.packageName, ci.name));
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DCallLogProviderTest.java177 CallerInfo ci = new CallerInfo();
178 ci.name = "1-800-GOOG-411";
179 ci.numberType = Phone.TYPE_CUSTOM;
180 ci.numberLabel = "Directory";
187 Uri uri = Calls.addCall(ci, getMockContext(), "1-800-263-7643",
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DConversation.java562 final ConversationInfo ci;
574 ci = response.getParcelable(ConversationCursorCommand.COMMAND_GET_CONVERSATION_INFO);
577 ci = ConversationInfo.fromBlob(cursor.getBlob(UIProvider.CONVERSATION_INFO_COLUMN));
579 return ci;
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogAdapter.java1297 ContactInfo ci = mContactInfoCache.getPossiblyExpired(numberCountryIso);
1298 if (ci != null && ci != ContactInfo.EMPTY) {
1299 matchingNumber = ci.number;
/packages/apps/Settings/src/com/android/settings/
H A DRadioInfo.java540 for (CellInfo ci : mCellInfoValue) {
544 value.append(ci.toString());

Completed in 787 milliseconds