Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/usage/
DNetworkStats.java90 private NetworkStatsHistory mHistory = null; field in NetworkStats
493 } else if (mHistory != null) { in hasNextBucket()
494 return mEnumerationIndex < mHistory.size() in hasNextBucket()
549 mHistory = null; in startHistoryEnumeration()
551 mHistory = mSession.getHistoryIntervalForUid(mTemplate, uid, in startHistoryEnumeration()
595 mHistory = null; in stepHistory()
597 mHistory = mSession.getHistoryIntervalForUid(mTemplate, getUid(), in stepHistory()
657 if (bucketOut != null && mHistory != null) { in getNextHistoryBucket()
658 if (mEnumerationIndex < mHistory.size()) { in getNextHistoryBucket()
659 mRecycledHistoryEntry = mHistory.getValues(mEnumerationIndex++, in getNextHistoryBucket()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DSignalController.java55 private final State[] mHistory; field in SignalController
69 mHistory = new State[HISTORY_SIZE]; in SignalController()
71 mHistory[i] = cleanState(); in SignalController()
181 mHistory[mHistoryIndex++ & (HISTORY_SIZE - 1)].copyFrom(mLastState); in recordLastState()
191 if (mHistory[i].time != 0) size++; in dump()
197 + mHistory[i & (HISTORY_SIZE - 1)]); in dump()
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
DVCardParserTests.java47 private final List<Order> mHistory = new ArrayList<Order>(); field in VCardParserTests.MockVCardInterpreter
56 mHistory.add(order); in inspectOrder()
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java675 HistoryItem mHistory; field in BatteryStatsImpl
3946 mHistory = mHistoryEnd = rec; in addHistoryRecordLocked()
3953 if (mHistory != null) { in clearHistoryLocked()
3955 mHistoryCache = mHistory; in clearHistoryLocked()
3956 mHistory = mHistoryLastEnd = mHistoryEnd = null; in clearHistoryLocked()
10599 if ((mHistoryIterator = mHistory) == null) { in startIteratingOldHistoryLocked()
13654 mHistory = mHistoryEnd = mHistoryCache = null; in readOldHistory()
13698 HistoryItem rec = mHistory; in writeOldHistory()