Lines Matching refs:details
69 * Displays the details of a specific call log entry.
99 public void onGetCallDetails(PhoneCallDetails[] details) {
100 if (details == null) {
110 PhoneCallDetails firstDetails = details[0];
118 // Cache the details about the phone number.
162 new CallDetailHistoryAdapter(mContext, mInflater, mCallTypeHelper, details));
190 * @param details The call details.
193 private CharSequence getNumberTypeOrLocation(PhoneCallDetails details) {
194 if (!TextUtils.isEmpty(details.name)) {
195 return Phone.getTypeLabel(mResources, details.numberType,
196 details.numberLabel);
198 return details.geocode;