/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/ |
H A D | ShadowNativeCursorWindow.java | 28 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 D | ShadowLegacyCursorWindow.java | 31 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 D | ShadowNativeSQLiteConnection.java | 240 final long windowPtr, in nativeExecuteForCursorWindow()
|
H A D | ShadowLegacySQLiteConnection.java | 210 final long windowPtr, in nativeExecuteForCursorWindow()
|
/aosp_15_r20/external/robolectric/nativeruntime/src/main/java/org/robolectric/nativeruntime/ |
H A D | CursorWindowNatives.java | 37 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 D | SQLiteConnectionNatives.java | 98 long windowPtr, in nativeExecuteForCursorWindow()
|
/aosp_15_r20/frameworks/base/core/java/android/database/ |
H A 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 …]
|
H A 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 …]
|
/aosp_15_r20/frameworks/base/core/jni/ |
H A 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 …]
|
H A D | android_database_SQLiteConnection.cpp | 812 jlong connectionPtr, jlong statementPtr, jlong windowPtr, in nativeExecuteForCursorWindow()
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/javac/ |
D | framework.jar6 | META-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/ |
D | framework.jar | android/flags/SyncableFlag.class
SyncableFlag.java
package android.flags
public final android.flags ... |
/aosp_15_r20/frameworks/base/core/java/android/database/sqlite/ |
H A D | SQLiteConnection.java | 177 long connectionPtr, long statementPtr, long windowPtr, in nativeExecuteForCursorWindow()
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/combined/ |
D | framework.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/Manifest$permission. ... |
/aosp_15_r20/out/target/common/obj/JAVA_LIBRARIES/framework-minus-apex_intermediates/ |
D | classes.jar | res/vendor.mime.types
res/debian.mime.types
res/android.mime ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/jarjar/ |
D | framework.jar | res/vendor.mime.types
res/debian.mime.types
res/android.mime ... |