Home | History | Annotate | Download | only in jni

Lines Matching refs:row

47 static void throwExceptionWithRowCol(JNIEnv* env, jint row, jint column) {
49 msg.appendFormat("Couldn't read row %d, col %d from CursorWindow. "
51 row, column);
153 jint row, jint column) {
155 LOG_WINDOW("returning column type affinity for %d,%d from %p", row, column, window);
157 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
161 //throwExceptionWithRowCol(env, row, column);
168 jint row, jint column) {
170 LOG_WINDOW("Getting blob for %d,%d from %p", row, column, window);
172 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
174 throwExceptionWithRowCol(env, row, column);
203 jint row, jint column) {
205 LOG_WINDOW("Getting string for %d,%d from %p", row, column, window);
207 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
209 throwExceptionWithRowCol(env, row, column);
295 jint row, jint column, jobject bufferObj) {
297 LOG_WINDOW("Copying string for %d,%d from %p", row, column, window);
299 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
301 throwExceptionWithRowCol(env, row, column);
334 jint row, jint column) {
336 LOG_WINDOW("Getting long for %d,%d from %p", row, column, window);
338 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
340 throwExceptionWithRowCol(env, row, column);
365 jint row, jint column) {
367 LOG_WINDOW("Getting double for %d,%d from %p", row, column, window);
369 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column);
371 throwExceptionWithRowCol(env, row, column);
396 jbyteArray valueObj, jint row, jint column) {
401 status_t status = window->putBlob(row, column, value, len);
409 LOG_WINDOW("%d,%d is BLOB with %u bytes", row, column, len);
414 jstring valueObj, jint row, jint column) {
423 status_t status = window->putString(row, column, valueStr, sizeIncludingNull);
431 LOG_WINDOW("%d,%d is TEXT with %u bytes", row, column, sizeIncludingNull);
436 jlong value, jint row, jint column) {
438 status_t status = window->putLong(row, column, value);
445 LOG_WINDOW("%d,%d is INTEGER 0x%016llx", row, column, value);
450 jdouble value, jint row, jint column) {
452 status_t status = window->putDouble(row, column, value);
459 LOG_WINDOW("%d,%d is FLOAT %lf", row, column, value);
464 jint row, jint column) {
466 status_t status = window->putNull(row, column);
473 LOG_WINDOW("%d,%d is NULL", row, column);