Searched defs:MAX_RECENT_OPERATIONS (Results 1 - 1 of 1) sorted by relevance

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

Completed in 37 milliseconds