Home
last modified time | relevance | path

Searched refs:mCompletedSmsSessions (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyMetrics.java168 private final Deque<SmsSession> mCompletedSmsSessions = new ArrayDeque<>(); field in TelephonyMetrics
514 for (SmsSession smsSession : mCompletedSmsSessions) { in printAllMetrics()
617 mCompletedSmsSessions.clear(); in reset()
710 log.smsSessions = new SmsSession[mCompletedSmsSessions.size()]; in buildProto()
711 mCompletedSmsSessions.toArray(log.smsSessions); in buildProto()
1122 if (mCompletedSmsSessions.size() >= MAX_COMPLETED_SMS_SESSIONS) { in finishSmsSession()
1123 mCompletedSmsSessions.removeFirst(); in finishSmsSession()
1125 mCompletedSmsSessions.add(smsSession); in finishSmsSession()