Searched defs:windowPtr (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/ravenwood/runtime-helper-src/framework/com/android/platform/test/ravenwood/nativesubstitution/ |
D | CursorWindow_host.java | 52 public static void nativeDispose(long windowPtr) { in nativeDispose() 56 public static String nativeGetName(long windowPtr) { in nativeGetName() 60 public static boolean nativeSetNumColumns(long windowPtr, int columnNum) { in nativeSetNumColumns() 65 public static int nativeGetNumRows(long windowPtr) { in nativeGetNumRows() 69 public static boolean nativeAllocRow(long windowPtr) { in nativeAllocRow() 79 private static boolean put(long windowPtr, String value, int type, int row, int column) { in put() 90 public static int nativeGetType(long windowPtr, int row, int column) { in nativeGetType() 99 public static boolean nativePutString(long windowPtr, String value, in nativePutString() 104 public static String nativeGetString(long windowPtr, int row, int column) { in nativeGetString() 113 public static boolean nativePutLong(long windowPtr, long value, int row, int column) { in nativePutLong() [all …]
|
/frameworks/base/core/java/android/database/ |
D | CursorWindow.java | 68 private static native void nativeDispose(long windowPtr); in nativeDispose() 69 private static native void nativeWriteToParcel(long windowPtr, Parcel parcel); in nativeWriteToParcel() 71 private static native String nativeGetName(long windowPtr); in nativeGetName() 72 private static native byte[] nativeGetBlob(long windowPtr, int row, int column); in nativeGetBlob() 73 private static native String nativeGetString(long windowPtr, int row, int column); in nativeGetString() 74 private static native void nativeCopyStringToBuffer(long windowPtr, int row, int column, in nativeCopyStringToBuffer() 76 private static native boolean nativePutBlob(long windowPtr, byte[] value, int row, int column); in nativePutBlob() 77 private static native boolean nativePutString(long windowPtr, String value, in nativePutString() 83 private static native void nativeClear(long windowPtr); in nativeClear() 86 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 | 796 jlong connectionPtr, jlong statementPtr, jlong windowPtr, in nativeExecuteForCursorWindow()
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteConnection.java | 175 long connectionPtr, long statementPtr, long windowPtr, in nativeExecuteForCursorWindow()
|