Lines Matching refs:row

48 static void throwExceptionWithRowCol(JNIEnv* env, jint row, jint column) {
50 msg.appendFormat("Couldn't read row %d, col %d from CursorWindow. "
52 row, column);
154 jint row, jint column) {
156 LOG_WINDOW("returning column type affinity for %d,%d from %p", row, column, window);
158 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
162 //throwExceptionWithRowCol(env, row, column);
169 jint row, jint column) {
171 LOG_WINDOW("Getting blob for %d,%d from %p", row, column, window);
173 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
175 throwExceptionWithRowCol(env, row, column);
204 jint row, jint column) {
206 LOG_WINDOW("Getting string for %d,%d from %p", row, column, window);
208 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
210 throwExceptionWithRowCol(env, row, column);
296 jint row, jint column, jobject bufferObj) {
298 LOG_WINDOW("Copying string for %d,%d from %p", row, column, window);
300 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
302 throwExceptionWithRowCol(env, row, column);
335 jint row, jint column) {
337 LOG_WINDOW("Getting long for %d,%d from %p", row, column, window);
339 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
341 throwExceptionWithRowCol(env, row, column);
366 jint row, jint column) {
368 LOG_WINDOW("Getting double for %d,%d from %p", row, column, window);
370 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
372 throwExceptionWithRowCol(env, row, column);
397 jbyteArray valueObj, jint row, jint column) {
402 status_t status = window->putBlob(row, column, value, len);
410 LOG_WINDOW("%d,%d is BLOB with %u bytes", row, column, len);
415 jstring valueObj, jint row, jint column) {
424 status_t status = window->putString(row, column, valueStr, sizeIncludingNull);
432 LOG_WINDOW("%d,%d is TEXT with %u bytes", row, column, sizeIncludingNull);
437 jlong value, jint row, jint column) {
439 status_t status = window->putLong(row, column, value);
446 LOG_WINDOW("%d,%d is INTEGER 0x%016llx", row, column, value);
451 jdouble value, jint row, jint column) {
453 status_t status = window->putDouble(row, column, value);
460 LOG_WINDOW("%d,%d is FLOAT %lf", row, column, value);
465 jint row, jint column) {
467 status_t status = window->putNull(row, column);
474 LOG_WINDOW("%d,%d is NULL", row, column);