Searched refs:MAXIMUM_ALLOWED_CURSOR_COUNT (Results 1 – 4 of 4) sorted by relevance
19 import static android.health.connect.Constants.MAXIMUM_ALLOWED_CURSOR_COUNT;192 if (cursor.getCount() > MAXIMUM_ALLOWED_CURSOR_COUNT) { in getMedicalResources()195 + MAXIMUM_ALLOWED_CURSOR_COUNT); in getMedicalResources()
21 import static android.health.connect.Constants.MAXIMUM_ALLOWED_CURSOR_COUNT;448 if (cursor.getCount() > MAXIMUM_ALLOWED_CURSOR_COUNT) { in getInternalRecords()450 "Too many records in the cursor. Max allowed: " + MAXIMUM_ALLOWED_CURSOR_COUNT); in getInternalRecords()
19 import static android.health.connect.Constants.MAXIMUM_ALLOWED_CURSOR_COUNT;117 List<RecordInternal<?>> records = new ArrayList<>(MAXIMUM_ALLOWED_CURSOR_COUNT + 1); in getInternalRecords_cursorHasTooManyData_throws()118 for (int i = 0; i <= MAXIMUM_ALLOWED_CURSOR_COUNT; i++) { in getInternalRecords_cursorHasTooManyData_throws()
37 public static final int MAXIMUM_ALLOWED_CURSOR_COUNT = 100_000; field in Constants