Searched refs:connectionPtr (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/jni/ |
D | android_database_SQLiteConnection.cpp | 192 static void nativeClose(JNIEnv* env, jclass clazz, jlong connectionPtr) { in nativeClose() argument 193 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeClose() 245 static void nativeRegisterCustomScalarFunction(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeRegisterCustomScalarFunction() argument 247 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeRegisterCustomScalarFunction() 339 static void nativeRegisterCustomAggregateFunction(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeRegisterCustomAggregateFunction() argument 341 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeRegisterCustomAggregateFunction() 361 static void nativeRegisterLocalizedCollators(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeRegisterLocalizedCollators() argument 363 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeRegisterLocalizedCollators() 374 static jlong nativePrepareStatement(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativePrepareStatement() argument 376 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativePrepareStatement() [all …]
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteConnection.java | 139 private static native void nativeClose(long connectionPtr); in nativeClose() argument 140 private static native void nativeRegisterCustomScalarFunction(long connectionPtr, in nativeRegisterCustomScalarFunction() argument 142 private static native void nativeRegisterCustomAggregateFunction(long connectionPtr, in nativeRegisterCustomAggregateFunction() argument 144 private static native void nativeRegisterLocalizedCollators(long connectionPtr, String locale); in nativeRegisterLocalizedCollators() argument 145 private static native long nativePrepareStatement(long connectionPtr, String sql); in nativePrepareStatement() argument 146 private static native void nativeFinalizeStatement(long connectionPtr, long statementPtr); in nativeFinalizeStatement() argument 147 private static native int nativeGetParameterCount(long connectionPtr, long statementPtr); in nativeGetParameterCount() argument 148 private static native boolean nativeIsReadOnly(long connectionPtr, long statementPtr); in nativeIsReadOnly() argument 149 private static native boolean nativeUpdatesTempOnly(long connectionPtr, long statementPtr); in nativeUpdatesTempOnly() argument 150 private static native int nativeGetColumnCount(long connectionPtr, long statementPtr); in nativeGetColumnCount() argument [all …]
|