Home
last modified time | relevance | path

Searched refs:nativeSrcBitmap (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/robolectric/nativeruntime/src/main/java/org/robolectric/nativeruntime/
H A DBitmapNatives.java44 public static native Bitmap nativeCopy(long nativeSrcBitmap, int nativeConfig, boolean isMutable); in nativeCopy() argument
46 public static native Bitmap nativeCopyAshmem(long nativeSrcBitmap); in nativeCopyAshmem() argument
48 public static native Bitmap nativeCopyAshmemConfig(long nativeSrcBitmap, int nativeConfig); in nativeCopyAshmemConfig() argument
/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowNativeBitmap.java105 protected static Bitmap nativeCopy(long nativeSrcBitmap, int nativeConfig, boolean isMutable) { in nativeCopy() argument
106 return BitmapNatives.nativeCopy(nativeSrcBitmap, nativeConfig, isMutable); in nativeCopy()
110 protected static Bitmap nativeCopyAshmem(long nativeSrcBitmap) { in nativeCopyAshmem() argument
111 return BitmapNatives.nativeCopyAshmem(nativeSrcBitmap); in nativeCopyAshmem()
115 protected static Bitmap nativeCopyAshmemConfig(long nativeSrcBitmap, int nativeConfig) { in nativeCopyAshmemConfig() argument
116 return BitmapNatives.nativeCopyAshmemConfig(nativeSrcBitmap, nativeConfig); in nativeCopyAshmemConfig()
/aosp_15_r20/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java2519 private static native Bitmap nativeCopy(long nativeSrcBitmap, int nativeConfig, in nativeCopy() argument
2521 private static native Bitmap nativeCopyAshmem(long nativeSrcBitmap); in nativeCopyAshmem() argument
2522 private static native Bitmap nativeCopyAshmemConfig(long nativeSrcBitmap, int nativeConfig); in nativeCopyAshmemConfig() argument