Searched defs:callerInfo (Results 1 - 4 of 4) sorted by relevance

/packages/services/Telephony/src/com/android/phone/
H A DCallLogger.java146 * @param callerInfo The CallerInfo. Maybe null.
149 private String getLogNumber(Connection conn, CallerInfo callerInfo) { argument
160 if (null == callerInfo || TextUtils.isEmpty(callerInfo.phoneNumber) ||
161 callerInfo.isEmergencyNumber() || callerInfo.isVoiceMailNumber()) {
169 number = callerInfo.phoneNumber;
179 String newNumber = PhoneUtils.modifyForSpecialCnapCases(mApplication, callerInfo,
195 * @param callerInfo The CallerInfo. Maybe null.
198 private int getPresentation(Connection conn, CallerInfo callerInfo) { argument
[all...]
/packages/apps/InCallUI/src/com/android/incallui/
H A DContactInfoCache.java95 public void onQueryComplete(int token, Object cookie, CallerInfo callerInfo) { argument
96 findInfoQueryComplete((Call) cookie, callerInfo, mIsIncoming, true);
144 final CallerInfo callerInfo = CallerInfoUtils.getCallerInfoForCall(
147 findInfoQueryComplete(call, callerInfo, isIncoming, false);
150 private void findInfoQueryComplete(Call call, CallerInfo callerInfo, boolean isIncoming, argument
154 if (callerInfo.contactExists || callerInfo.isEmergencyNumber() ||
155 callerInfo.isVoiceMailNumber()) {
164 if (!didLocalLookup || callerInfo.contactExists ||
166 cacheEntry = buildEntry(mContext, callId, callerInfo, presentationMod
[all...]
/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallLogManager.java46 * @param callerInfo Caller details.
57 public AddCallArgs(Context context, CallerInfo callerInfo, String number, argument
61 this.callerInfo = callerInfo;
74 public final CallerInfo callerInfo; field in class:CallLogManager.AddCallArgs
155 * @param callerInfo Caller details.
165 CallerInfo callerInfo,
188 Log.d(TAG, "Logging Calllog entry: " + callerInfo + ", "
191 AddCallArgs args = new AddCallArgs(mContext, callerInfo, number, presentation,
275 result[i] = Calls.addCall(c.callerInfo,
164 logCall( CallerInfo callerInfo, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, long duration, Long dataUsage) argument
[all...]
H A DCall.java147 public void onQueryComplete(int token, Object cookie, CallerInfo callerInfo) {
149 ((Call) cookie).setCallerInfo(callerInfo, token);
1122 * @param callerInfo The new caller information to set.
1125 private void setCallerInfo(CallerInfo callerInfo, int token) { argument
1126 Preconditions.checkNotNull(callerInfo);
1129 mCallerInfo = callerInfo;
1130 Log.i(this, "CallerInfo received for %s: %s", Log.piiHandle(mHandle), callerInfo);

Completed in 408 milliseconds