Searched defs:windowPtr (Results 1 – 5 of 5) sorted by relevance
| /frameworks/base/core/java/android/database/ |
| D | CursorWindow_ravenwood.java | 53 public static void nativeDispose(long windowPtr) { in nativeDispose() 57 public static String nativeGetName(long windowPtr) { in nativeGetName() 61 public static boolean nativeSetNumColumns(long windowPtr, int columnNum) { in nativeSetNumColumns() 66 public static int nativeGetNumRows(long windowPtr) { in nativeGetNumRows() 70 public static boolean nativeAllocRow(long windowPtr) { in nativeAllocRow() 80 private static boolean put(long windowPtr, String value, int type, int row, int column) { in put() 91 public static int nativeGetType(long windowPtr, int row, int column) { in nativeGetType() 100 public static boolean nativePutString(long windowPtr, String value, in nativePutString() 105 public static String nativeGetString(long windowPtr, int row, int column) { in nativeGetString() 114 public static boolean nativePutLong(long windowPtr, long value, int row, int column) { in nativePutLong() [all …]
|
| D | CursorWindow.java | 76 private static native void nativeDispose(long windowPtr); in nativeDispose() 78 private static native void nativeWriteToParcel(long windowPtr, Parcel parcel); in nativeWriteToParcel() 81 private static native String nativeGetName(long windowPtr); in nativeGetName() 83 private static native byte[] nativeGetBlob(long windowPtr, int row, int column); in nativeGetBlob() 85 private static native String nativeGetString(long windowPtr, int row, int column); in nativeGetString() 87 private static native void nativeCopyStringToBuffer(long windowPtr, int row, int column, in nativeCopyStringToBuffer() 90 private static native boolean nativePutBlob(long windowPtr, byte[] value, int row, int column); in nativePutBlob() 92 private static native boolean nativePutString(long windowPtr, String value, in nativePutString() 99 private static native void nativeClear(long windowPtr); in nativeClear() 103 private static native int nativeGetNumRows(long windowPtr); in nativeGetNumRows() [all …]
|
| /frameworks/base/core/jni/ |
| D | android_database_CursorWindow.cpp | 132 static void nativeDispose(JNIEnv* env, jclass clazz, jlong windowPtr) { in nativeDispose() 140 static jstring nativeGetName(JNIEnv* env, jclass clazz, jlong windowPtr) { in nativeGetName() 145 static void nativeWriteToParcel(JNIEnv * env, jclass clazz, jlong windowPtr, in nativeWriteToParcel() 158 static void nativeClear(JNIEnv * env, jclass clazz, jlong windowPtr) { in nativeClear() 167 static jint nativeGetNumRows(JNIEnv* env, jclass clazz, jlong windowPtr) { in nativeGetNumRows() 172 static jboolean nativeSetNumColumns(JNIEnv* env, jclass clazz, jlong windowPtr, in nativeSetNumColumns() 179 static jboolean nativeAllocRow(JNIEnv* env, jclass clazz, jlong windowPtr) { in nativeAllocRow() 185 static void nativeFreeLastRow(JNIEnv* env, jclass clazz, jlong windowPtr) { in nativeFreeLastRow() 190 static jint nativeGetType(JNIEnv* env, jclass clazz, jlong windowPtr, in nativeGetType() 205 static jbyteArray nativeGetBlob(JNIEnv* env, jclass clazz, jlong windowPtr, in nativeGetBlob() [all …]
|
| D | android_database_SQLiteConnection.cpp | 819 jlong connectionPtr, jlong statementPtr, jlong windowPtr, in nativeExecuteForCursorWindow()
|
| /frameworks/base/core/java/android/database/sqlite/ |
| D | SQLiteConnection.java | 177 long connectionPtr, long statementPtr, long windowPtr, in nativeExecuteForCursorWindow()
|