Searched refs:connectionPtr (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/jni/ |
D | android_database_SQLiteConnection.cpp | 178 static void nativeClose(JNIEnv* env, jclass clazz, jlong connectionPtr) { in nativeClose() argument 179 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeClose() 248 static void nativeRegisterCustomFunction(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeRegisterCustomFunction() argument 250 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeRegisterCustomFunction() 272 static void nativeRegisterLocalizedCollators(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeRegisterLocalizedCollators() argument 274 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeRegisterLocalizedCollators() 285 static jlong nativePrepareStatement(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativePrepareStatement() argument 287 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativePrepareStatement() 316 static void nativeFinalizeStatement(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeFinalizeStatement() argument 318 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeFinalizeStatement() [all …]
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteConnection.java | 122 private static native void nativeClose(long connectionPtr); in nativeClose() argument 123 private static native void nativeRegisterCustomFunction(long connectionPtr, in nativeRegisterCustomFunction() argument 125 private static native void nativeRegisterLocalizedCollators(long connectionPtr, String locale); in nativeRegisterLocalizedCollators() argument 126 private static native long nativePrepareStatement(long connectionPtr, String sql); in nativePrepareStatement() argument 127 private static native void nativeFinalizeStatement(long connectionPtr, long statementPtr); in nativeFinalizeStatement() argument 128 private static native int nativeGetParameterCount(long connectionPtr, long statementPtr); in nativeGetParameterCount() argument 129 private static native boolean nativeIsReadOnly(long connectionPtr, long statementPtr); in nativeIsReadOnly() argument 130 private static native int nativeGetColumnCount(long connectionPtr, long statementPtr); in nativeGetColumnCount() argument 131 private static native String nativeGetColumnName(long connectionPtr, long statementPtr, in nativeGetColumnName() argument 133 private static native void nativeBindNull(long connectionPtr, long statementPtr, in nativeBindNull() argument [all …]
|