Searched refs:connectionPtr (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/jni/ |
D | android_database_SQLiteConnection.cpp | 189 static void nativeClose(JNIEnv* env, jclass clazz, jlong connectionPtr) { in nativeClose() argument 190 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeClose() 259 static void nativeRegisterCustomFunction(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeRegisterCustomFunction() argument 261 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeRegisterCustomFunction() 283 static void nativeRegisterLocalizedCollators(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeRegisterLocalizedCollators() argument 285 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeRegisterLocalizedCollators() 296 static jlong nativePrepareStatement(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativePrepareStatement() argument 298 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativePrepareStatement() 327 static void nativeFinalizeStatement(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeFinalizeStatement() argument 329 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeFinalizeStatement() [all …]
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteConnection.java | 125 private static native void nativeClose(long connectionPtr); in nativeClose() argument 126 private static native void nativeRegisterCustomFunction(long connectionPtr, in nativeRegisterCustomFunction() argument 128 private static native void nativeRegisterLocalizedCollators(long connectionPtr, String locale); in nativeRegisterLocalizedCollators() argument 129 private static native long nativePrepareStatement(long connectionPtr, String sql); in nativePrepareStatement() argument 130 private static native void nativeFinalizeStatement(long connectionPtr, long statementPtr); in nativeFinalizeStatement() argument 131 private static native int nativeGetParameterCount(long connectionPtr, long statementPtr); in nativeGetParameterCount() argument 132 private static native boolean nativeIsReadOnly(long connectionPtr, long statementPtr); in nativeIsReadOnly() argument 133 private static native int nativeGetColumnCount(long connectionPtr, long statementPtr); in nativeGetColumnCount() argument 134 private static native String nativeGetColumnName(long connectionPtr, long statementPtr, in nativeGetColumnName() argument 136 private static native void nativeBindNull(long connectionPtr, long statementPtr, in nativeBindNull() argument [all …]
|