Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/connectivity/
H A DMobileSignalController.java61 private static final int STATUS_HISTORY_SIZE = 64; field in MobileSignalController
81 private final String[] mMobileStatusHistory = new String[STATUS_HISTORY_SIZE];
557 mMobileStatusHistoryIndex = (mMobileStatusHistoryIndex + 1) % STATUS_HISTORY_SIZE; in recordLastMobileStatus()
570 for (int i = 0; i < STATUS_HISTORY_SIZE; i++) { in dump()
576 for (int i = mMobileStatusHistoryIndex + STATUS_HISTORY_SIZE - 1; in dump()
577 i >= mMobileStatusHistoryIndex + STATUS_HISTORY_SIZE - size; i--) { in dump()
579 + (mMobileStatusHistoryIndex + STATUS_HISTORY_SIZE - i) + "): " in dump()
580 + mMobileStatusHistory[i & (STATUS_HISTORY_SIZE - 1)]); in dump()