Searched defs:isShareable (Results 1 - 3 of 3) 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( long asset, boolean isShareable) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp58 jint offset, jint length, jboolean isShareable) {
59 /* If isShareable we could decide to just wrap the java array and
61 For now we just always copy the array's data if isShareable.
72 jobject fileDescriptor, jboolean isShareable) {
94 jboolean isShareable) {
108 jboolean isShareable) {
57 nativeNewInstanceFromByteArray(JNIEnv* env, jobject, jbyteArray byteArray, jint offset, jint length, jboolean isShareable) argument
71 nativeNewInstanceFromFileDescriptor(JNIEnv* env, jobject clazz, jobject fileDescriptor, jboolean isShareable) argument
91 nativeNewInstanceFromStream(JNIEnv* env, jobject clazz, jobject is, jbyteArray storage, jboolean isShareable) argument
106 nativeNewInstanceFromAsset(JNIEnv* env, jobject clazz, jlong native_asset, jboolean isShareable) argument
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
H A DBitmapRegionTileSource.java58 String pathName, boolean isShareable) {
60 BitmapRegionDecoder d = BitmapRegionDecoder.newInstance(pathName, isShareable);
71 InputStream is, boolean isShareable) {
73 BitmapRegionDecoder d = BitmapRegionDecoder.newInstance(is, isShareable);
57 newInstance( String pathName, boolean isShareable) argument
70 newInstance( InputStream is, boolean isShareable) argument

Completed in 98 milliseconds