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

/frameworks/base/core/jni/
H A Dandroid_database_SQLiteConnection.cpp693 int totalRows = 0; local
700 LOG_WINDOW("Stepped statement %p to row %d", statement, totalRows);
702 totalRows += 1;
705 if (startPos >= totalRows || windowFull) {
752 statement, totalRows, addedRows, window->size() - window->freeSpace());
756 if (startPos > totalRows) {
757 ALOGE("startPos %d > actual rows %d", startPos, totalRows);
759 jlong result = jlong(startPos) << 32 | jlong(totalRows);

Completed in 25 milliseconds