Searched refs:mCallRecords (Results 1 – 2 of 2) sorted by relevance
44 private final List<PhoneCallLog.Record> mCallRecords; field in UiCallLog55 mCallRecords = new ArrayList<>(callRecords); in UiCallLog()130 return getCallRecords(mCallRecords.size()); in getCallRecords()142 toIndex = Math.min(toIndex, mCallRecords.size()); in getCallRecords()146 return new ArrayList<>(mCallRecords.subList(0, toIndex)); in getCallRecords()154 return mCallRecords.isEmpty() ? 0 in getMostRecentCallEndTimestamp()155 : mCallRecords.get(0).getCallEndTimestamp(); in getMostRecentCallEndTimestamp()162 return mCallRecords.isEmpty() ? CallHistoryLiveData.CallType.CALL_TYPE_ALL in getMostRecentCallType()163 : mCallRecords.get(0).getCallType(); in getMostRecentCallType()
74 private List<Record> mCallRecords = new ArrayList<>(); field in PhoneCallLog92 phoneCallLog.mCallRecords.add(record); in fromCursor()120 if (!mCallRecords.isEmpty()) { in getLastCallEndTimestamp()121 return mCallRecords.get(0).getCallEndTimestamp(); in getLastCallEndTimestamp()131 return new ArrayList<>(mCallRecords); in getAllCallRecords()140 mCallRecords.addAll(phoneCallLog.mCallRecords); in merge()141 Collections.sort(mCallRecords); in merge()176 sb.append(mCallRecords.size()); in toString()