Searched defs:isShareable (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DBitmapRegionDecoder.java50 * @param isShareable If this is true, then the BitmapRegionDecoder may keep a
61 int offset, int length, boolean isShareable) throws IOException {
65 return nativeNewInstance(data, offset, length, isShareable);
75 * @param isShareable If this is true, then the BitmapRegionDecoder may keep a
86 FileDescriptor fd, boolean isShareable) throws IOException {
87 return nativeNewInstance(fd, isShareable);
98 * @param isShareable If this is true, then the BitmapRegionDecoder may keep a
114 boolean isShareable) throws IOException {
118 isShareable);
124 return nativeNewInstance(is, tempStorage, isShareable);
60 newInstance(byte[] data, int offset, int length, boolean isShareable) argument
85 newInstance( FileDescriptor fd, boolean isShareable) argument
113 newInstance(InputStream is, boolean isShareable) argument
143 newInstance(String pathName, boolean isShareable) argument
264 nativeNewInstance( byte[] data, int offset, int length, boolean isShareable) argument
266 nativeNewInstance( FileDescriptor fd, boolean isShareable) argument
268 nativeNewInstance( InputStream is, byte[] storage, boolean isShareable) argument
270 nativeNewInstance( int asset, boolean isShareable) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp105 int offset, int length, jboolean isShareable) {
106 /* If isShareable we could decide to just wrap the java array and
108 For now we just always copy the array's data if isShareable.
119 jobject fileDescriptor, jboolean isShareable) {
141 jboolean isShareable) {
155 jboolean isShareable) {
104 nativeNewInstanceFromByteArray(JNIEnv* env, jobject, jbyteArray byteArray, int offset, int length, jboolean isShareable) argument
118 nativeNewInstanceFromFileDescriptor(JNIEnv* env, jobject clazz, jobject fileDescriptor, jboolean isShareable) argument
138 nativeNewInstanceFromStream(JNIEnv* env, jobject clazz, jobject is, jbyteArray storage, jboolean isShareable) argument
153 nativeNewInstanceFromAsset(JNIEnv* env, jobject clazz, jint native_asset, jboolean isShareable) argument
H A DBitmapFactory.cpp506 bool isShareable = optionsShareable(env, bitmapFactoryOptions); local
508 if (isPurgeable && isShareable) {
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
H A DBitmapRegionTileSource.java60 String pathName, boolean isShareable) {
62 BitmapRegionDecoder d = BitmapRegionDecoder.newInstance(pathName, isShareable);
73 InputStream is, boolean isShareable) {
75 BitmapRegionDecoder d = BitmapRegionDecoder.newInstance(is, isShareable);
59 newInstance( String pathName, boolean isShareable) argument
72 newInstance( InputStream is, boolean isShareable) argument

Completed in 136 milliseconds