Searched refs:connectionPtr (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/jni/ |
D | android_database_SQLiteConnection.cpp | 187 static void nativeClose(JNIEnv* env, jclass clazz, jlong connectionPtr) { in nativeClose() argument 188 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeClose() 237 static void nativeRegisterCustomScalarFunction(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeRegisterCustomScalarFunction() argument 239 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeRegisterCustomScalarFunction() 331 static void nativeRegisterCustomAggregateFunction(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeRegisterCustomAggregateFunction() argument 333 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeRegisterCustomAggregateFunction() 353 static void nativeRegisterLocalizedCollators(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativeRegisterLocalizedCollators() argument 355 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativeRegisterLocalizedCollators() 366 static jlong nativePrepareStatement(JNIEnv* env, jclass clazz, jlong connectionPtr, in nativePrepareStatement() argument 368 SQLiteConnection* connection = reinterpret_cast<SQLiteConnection*>(connectionPtr); in nativePrepareStatement() [all …]
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteConnection.java | 131 private static native void nativeClose(long connectionPtr); in nativeClose() argument 132 private static native void nativeRegisterCustomScalarFunction(long connectionPtr, in nativeRegisterCustomScalarFunction() argument 134 private static native void nativeRegisterCustomAggregateFunction(long connectionPtr, in nativeRegisterCustomAggregateFunction() argument 136 private static native void nativeRegisterLocalizedCollators(long connectionPtr, String locale); in nativeRegisterLocalizedCollators() argument 137 private static native long nativePrepareStatement(long connectionPtr, String sql); in nativePrepareStatement() argument 138 private static native void nativeFinalizeStatement(long connectionPtr, long statementPtr); in nativeFinalizeStatement() argument 139 private static native int nativeGetParameterCount(long connectionPtr, long statementPtr); in nativeGetParameterCount() argument 140 private static native boolean nativeIsReadOnly(long connectionPtr, long statementPtr); in nativeIsReadOnly() argument 141 private static native int nativeGetColumnCount(long connectionPtr, long statementPtr); in nativeGetColumnCount() argument 142 private static native String nativeGetColumnName(long connectionPtr, long statementPtr, in nativeGetColumnName() argument [all …]
|