Searched refs:STATUS_HISTORY_SIZE (Results 1 – 1 of 1) sorted by relevance
61 private static final int STATUS_HISTORY_SIZE = 64; field in MobileSignalController81 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()