Home
last modified time | relevance | path

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

/frameworks/base/core/jni/
Dandroid_database_CursorWindow.cpp120 static void nativeDispose(JNIEnv* env, jclass clazz, jlong windowPtr) { in nativeDispose() argument
121 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeDispose()
128 static jstring nativeGetName(JNIEnv* env, jclass clazz, jlong windowPtr) { in nativeGetName() argument
129 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeGetName()
133 static void nativeWriteToParcel(JNIEnv * env, jclass clazz, jlong windowPtr, in nativeWriteToParcel() argument
135 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeWriteToParcel()
146 static void nativeClear(JNIEnv * env, jclass clazz, jlong windowPtr) { in nativeClear() argument
147 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); in nativeClear()
155 static jint nativeGetNumRows(JNIEnv* env, jclass clazz, jlong windowPtr) { in nativeGetNumRows() argument
156 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.java63 private static native void nativeDispose(long windowPtr); in nativeDispose() argument
64 private static native void nativeWriteToParcel(long windowPtr, Parcel parcel); in nativeWriteToParcel() argument
66 private static native String nativeGetName(long windowPtr); in nativeGetName() argument
67 private static native byte[] nativeGetBlob(long windowPtr, int row, int column); in nativeGetBlob() argument
68 private static native String nativeGetString(long windowPtr, int row, int column); in nativeGetString() argument
69 private static native void nativeCopyStringToBuffer(long windowPtr, int row, int column, in nativeCopyStringToBuffer() argument
71 private static native boolean nativePutBlob(long windowPtr, byte[] value, int row, int column); in nativePutBlob() argument
72 private static native boolean nativePutString(long windowPtr, String value, in nativePutString() argument
78 private static native void nativeClear(long windowPtr); in nativeClear() argument
81 private static native int nativeGetNumRows(long windowPtr); in nativeGetNumRows() argument
[all …]
/frameworks/base/core/java/android/database/sqlite/
DSQLiteConnection.java155 long connectionPtr, long statementPtr, long windowPtr, in nativeExecuteForCursorWindow() argument