Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/database/sqlite/
DSQLiteConnection.java1291 private static final int MAX_RECENT_OPERATIONS = 20; field in SQLiteConnection.OperationLog
1295 private final Operation[] mOperations = new Operation[MAX_RECENT_OPERATIONS];
1301 final int index = (mIndex + 1) % MAX_RECENT_OPERATIONS; in beginOperation()
1429 index = MAX_RECENT_OPERATIONS - 1; in dump()
1433 } while (operation != null && n < MAX_RECENT_OPERATIONS); in dump()