Lines Matching refs:connectionPtr

176 static void nativeClose(JNIEnv* env, jclass clazz, jlong connectionPtr) {
177 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
246 static void nativeRegisterCustomFunction(JNIEnv* env, jclass clazz, jlong connectionPtr,
248 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
270 static void nativeRegisterLocalizedCollators(JNIEnv* env, jclass clazz, jlong connectionPtr,
272 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
283 static jlong nativePrepareStatement(JNIEnv* env, jclass clazz, jlong connectionPtr,
285 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
314 static void nativeFinalizeStatement(JNIEnv* env, jclass clazz, jlong connectionPtr,
316 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
326 static jint nativeGetParameterCount(JNIEnv* env, jclass clazz, jlong connectionPtr,
328 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
334 static jboolean nativeIsReadOnly(JNIEnv* env, jclass clazz, jlong connectionPtr,
336 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
342 static jint nativeGetColumnCount(JNIEnv* env, jclass clazz, jlong connectionPtr,
344 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
350 static jstring nativeGetColumnName(JNIEnv* env, jclass clazz, jlong connectionPtr,
352 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
366 static void nativeBindNull(JNIEnv* env, jclass clazz, jlong connectionPtr,
368 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
377 static void nativeBindLong(JNIEnv* env, jclass clazz, jlong connectionPtr,
379 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
388 static void nativeBindDouble(JNIEnv* env, jclass clazz, jlong connectionPtr,
390 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
399 static void nativeBindString(JNIEnv* env, jclass clazz, jlong connectionPtr,
401 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
414 static void nativeBindBlob(JNIEnv* env, jclass clazz, jlong connectionPtr,
416 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
428 static void nativeResetStatementAndClearBindings(JNIEnv* env, jclass clazz, jlong connectionPtr,
430 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
453 static void nativeExecute(JNIEnv* env, jclass clazz, jlong connectionPtr,
455 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
462 jlong connectionPtr, jlong statementPtr) {
463 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
471 jlong connectionPtr, jlong statementPtr) {
472 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
489 jlong connectionPtr, jlong statementPtr) {
490 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
501 jlong connectionPtr, jlong statementPtr) {
502 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
551 jlong connectionPtr, jlong statementPtr) {
552 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
668 jlong connectionPtr, jlong statementPtr, jlong windowPtr,
670 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
763 static jint nativeGetDbLookaside(JNIEnv* env, jobject clazz, jlong connectionPtr) {
764 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
772 static void nativeCancel(JNIEnv* env, jobject clazz, jlong connectionPtr) {
773 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);
777 static void nativeResetCancel(JNIEnv* env, jobject clazz, jlong connectionPtr,
779 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr);