Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DPersistAtomsStorage.java139 insertAtRandomPlace(mAtoms.voiceCallSession, call, MAX_NUM_CALL_SESSIONS); in addVoiceCallSession()
154 mAtoms.incomingSms = insertAtRandomPlace(mAtoms.incomingSms, sms, MAX_NUM_SMS); in addIncomingSms()
172 mAtoms.outgoingSms = insertAtRandomPlace(mAtoms.outgoingSms, sms, MAX_NUM_SMS); in addOutgoingSms()
189 insertAtRandomPlace( in addCellularServiceStateAndCellularDataServiceSwitch()
201 insertAtRandomPlace( in addCellularServiceStateAndCellularDataServiceSwitch()
214 insertAtRandomPlace(mAtoms.dataCallSession, dataCall, MAX_NUM_DATA_CALL_SESSIONS); in addDataCallSession()
265 insertAtRandomPlace( in addImsRegistrationStats()
280 insertAtRandomPlace( in addImsRegistrationTermination()
711 private static <T> T[] insertAtRandomPlace(T[] storage, T instance, int maxLength) { in insertAtRandomPlace() method in PersistAtomsStorage