Home
last modified time | relevance | path

Searched defs:windowPtr (Results 1 – 16 of 16) sorted by relevance

/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowNativeCursorWindow.java28 protected static void nativeDispose(long windowPtr) { in nativeDispose()
33 protected static String nativeGetName(long windowPtr) { in nativeGetName()
38 protected static byte[] nativeGetBlob(long windowPtr, int row, int column) { in nativeGetBlob()
43 protected static String nativeGetString(long windowPtr, int row, int column) { in nativeGetString()
49 long windowPtr, int row, int column, CharArrayBuffer buffer) { in nativeCopyStringToBuffer()
54 protected static boolean nativePutBlob(long windowPtr, byte[] value, int row, int column) { in nativePutBlob()
72 protected static boolean nativePutString(long windowPtr, String value, int row, int column) { in nativePutString()
90 protected static void nativeClear(long windowPtr) { in nativeClear()
95 protected static int nativeGetNumRows(long windowPtr) { in nativeGetNumRows()
100 protected static boolean nativeSetNumColumns(long windowPtr, int columnNum) { in nativeSetNumColumns()
[all …]
H A DShadowLegacyCursorWindow.java31 protected static void nativeDispose(long windowPtr) { in nativeDispose()
36 protected static byte[] nativeGetBlob(long windowPtr, int row, int column) { in nativeGetBlob()
57 protected static String nativeGetString(long windowPtr, int row, int column) { in nativeGetString()
68 protected static long nativeGetLong(long windowPtr, int row, int column) { in nativeGetLong()
73 protected static double nativeGetDouble(long windowPtr, int row, int column) { in nativeGetDouble()
78 protected static int nativeGetType(long windowPtr, int row, int column) { in nativeGetType()
83 protected static void nativeClear(long windowPtr) { in nativeClear()
88 protected static int nativeGetNumRows(long windowPtr) { in nativeGetNumRows()
93 protected static boolean nativePutBlob(long windowPtr, byte[] value, int row, int column) { in nativePutBlob()
102 protected static boolean nativePutString(long windowPtr, String value, int row, int column) { in nativePutString()
[all …]
H A DShadowNativeSQLiteConnection.java240 final long windowPtr, in nativeExecuteForCursorWindow()
H A DShadowLegacySQLiteConnection.java210 final long windowPtr, in nativeExecuteForCursorWindow()
/aosp_15_r20/external/robolectric/nativeruntime/src/main/java/org/robolectric/nativeruntime/
H A DCursorWindowNatives.java37 public static native void nativeDispose(long windowPtr); in nativeDispose()
42 public static native String nativeGetName(long windowPtr); in nativeGetName()
44 public static native byte[] nativeGetBlob(long windowPtr, int row, int column); in nativeGetBlob()
46 public static native String nativeGetString(long windowPtr, int row, int column); in nativeGetString()
49 long windowPtr, int row, int column, CharArrayBuffer buffer); in nativeCopyStringToBuffer()
51 public static native boolean nativePutBlob(long windowPtr, byte[] value, int row, int column); in nativePutBlob()
53 public static native boolean nativePutString(long windowPtr, String value, int row, int column); in nativePutString()
55 public static native void nativeClear(long windowPtr); in nativeClear()
57 public static native int nativeGetNumRows(long windowPtr); in nativeGetNumRows()
59 public static native boolean nativeSetNumColumns(long windowPtr, int columnNum); in nativeSetNumColumns()
[all …]
H A DSQLiteConnectionNatives.java98 long windowPtr, in nativeExecuteForCursorWindow()
/aosp_15_r20/frameworks/base/core/java/android/database/
H A DCursorWindow_ravenwood.java53 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 …]
H A DCursorWindow.java76 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 …]
/aosp_15_r20/frameworks/base/core/jni/
H A Dandroid_database_CursorWindow.cpp132 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 …]
H A Dandroid_database_SQLiteConnection.cpp812 jlong connectionPtr, jlong statementPtr, jlong windowPtr, in nativeExecuteForCursorWindow()
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/javac/
Dframework.jar6META-INF/ META-INF/MANIFEST.MF android/ android/content/ android/ ...
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/repackaged-jarjar/javac-6/
Dframework.jarandroid/flags/SyncableFlag.class SyncableFlag.java package android.flags public final android.flags ...
/aosp_15_r20/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java177 long connectionPtr, long statementPtr, long windowPtr, in nativeExecuteForCursorWindow()
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/combined/
Dframework.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/Manifest$permission. ...
/aosp_15_r20/out/target/common/obj/JAVA_LIBRARIES/framework-minus-apex_intermediates/
Dclasses.jarres/vendor.mime.types res/debian.mime.types res/android.mime ...
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/jarjar/
Dframework.jarres/vendor.mime.types res/debian.mime.types res/android.mime ...