Home
last modified time | relevance | path

Searched refs:windowPtr (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/jni/
Dandroid_database_CursorWindow.cpp124 static void nativeDispose(JNIEnv* env, jclass clazz, jlong windowPtr) { in nativeDispose() argument
125 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeDispose()
132 static jstring nativeGetName(JNIEnv* env, jclass clazz, jlong windowPtr) { in nativeGetName() argument
133 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeGetName()
137 static void nativeWriteToParcel(JNIEnv * env, jclass clazz, jlong windowPtr, in nativeWriteToParcel() argument
139 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeWriteToParcel()
150 static void nativeClear(JNIEnv * env, jclass clazz, jlong windowPtr) { in nativeClear() argument
151 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeClear()
159 static jint nativeGetNumRows(JNIEnv* env, jclass clazz, jlong windowPtr) { in nativeGetNumRows() argument
160 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeGetNumRows()
[all …]
Dandroid_database_SQLiteConnection.cpp677 jlong connectionPtr, jlong statementPtr, jlong windowPtr, in nativeExecuteForCursorWindow() argument
681 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeExecuteForCursorWindow()
/frameworks/base/core/java/android/database/
DCursorWindow.java69 private static native void nativeDispose(long windowPtr); in nativeDispose() argument
70 private static native void nativeWriteToParcel(long windowPtr, Parcel parcel); in nativeWriteToParcel() argument
72 private static native String nativeGetName(long windowPtr); in nativeGetName() argument
73 private static native byte[] nativeGetBlob(long windowPtr, int row, int column); in nativeGetBlob() argument
74 private static native String nativeGetString(long windowPtr, int row, int column); in nativeGetString() argument
75 private static native void nativeCopyStringToBuffer(long windowPtr, int row, int column, in nativeCopyStringToBuffer() argument
77 private static native boolean nativePutBlob(long windowPtr, byte[] value, int row, int column); in nativePutBlob() argument
78 private static native boolean nativePutString(long windowPtr, String value, in nativePutString() argument
84 private static native void nativeClear(long windowPtr); in nativeClear() argument
87 private static native int nativeGetNumRows(long windowPtr); in nativeGetNumRows() argument
[all …]
/frameworks/base/core/java/android/database/sqlite/
DSQLiteConnection.java157 long connectionPtr, long statementPtr, long windowPtr, in nativeExecuteForCursorWindow() argument