Home | History | Annotate | Download | only in native

Lines Matching refs:pos

3723 Java_SQLite_Stmt_bind__II(JNIEnv *env, jobject obj, jint pos, jint val)
3732 if (pos < 1 || pos > npar) {
3736 ret = sqlite3_bind_int((sqlite3_stmt *) v->vm, pos, val);
3750 Java_SQLite_Stmt_bind__IJ(JNIEnv *env, jobject obj, jint pos, jlong val)
3759 if (pos < 1 || pos > npar) {
3763 ret = sqlite3_bind_int64((sqlite3_stmt *) v->vm, pos, val);
3777 Java_SQLite_Stmt_bind__ID(JNIEnv *env, jobject obj, jint pos, jdouble val)
3786 if (pos < 1 || pos > npar) {
3790 ret = sqlite3_bind_double((sqlite3_stmt *) v->vm, pos, val);
3804 Java_SQLite_Stmt_bind__I_3B(JNIEnv *env, jobject obj, jint pos, jbyteArray val)
3815 if (pos < 1 || pos > npar) {
3829 pos, data, len, sqlite3_free);
3832 pos, "", 0, SQLITE_STATIC);
3835 ret = sqlite3_bind_null((sqlite3_stmt *) v->vm, pos);
3854 jint pos, jstring val)
3865 if (pos < 1 || pos > npar) {
3889 pos, data, len, sqlite3_free);
3891 ret = sqlite3_bind_text16((sqlite3_stmt *) v->vm, pos, "", 0,
3895 ret = sqlite3_bind_null((sqlite3_stmt *) v->vm, pos);
3913 Java_SQLite_Stmt_bind__I(JNIEnv *env, jobject obj, jint pos)
3922 if (pos < 1 || pos > npar) {
3926 ret = sqlite3_bind_null((sqlite3_stmt *) v->vm, pos);
3940 Java_SQLite_Stmt_bind_1zeroblob(JNIEnv *env, jobject obj, jint pos, jint len)
3949 if (pos < 1 || pos > npar) {
3953 ret = sqlite3_bind_zeroblob((sqlite3_stmt *) v->vm, pos, len);
3983 Java_SQLite_Stmt_bind_1parameter_1name(JNIEnv *env, jobject obj, jint pos)
3992 if (pos < 1 || pos > npar) {
3996 name = sqlite3_bind_parameter_name((sqlite3_stmt *) v->vm, pos);
4017 int pos;
4028 pos = sqlite3_bind_parameter_index((sqlite3_stmt *) v->vm, n);
4030 return pos;
4434 jint pos, jint len)
4458 ret = sqlite3_blob_write(bl->blob, buf, len, pos);
4475 jint pos, jint len)
4493 ret = sqlite3_blob_read(bl->blob, buf, len, pos);