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

/frameworks/base/graphics/java/android/graphics/
H A DBitmapRegionDecoder.java51 * @param isShareable If this is true, then the BitmapRegionDecoder may keep a
62 int offset, int length, boolean isShareable) throws IOException {
66 return nativeNewInstance(data, offset, length, isShareable);
76 * @param isShareable If this is true, then the BitmapRegionDecoder may keep a
87 FileDescriptor fd, boolean isShareable) throws IOException {
88 return nativeNewInstance(fd, isShareable);
99 * @param isShareable If this is true, then the BitmapRegionDecoder may keep a
110 boolean isShareable) throws IOException {
120 isShareable);
126 return nativeNewInstance(is, tempStorage, isShareable);
61 newInstance(byte[] data, int offset, int length, boolean isShareable) argument
86 newInstance( FileDescriptor fd, boolean isShareable) argument
109 newInstance(InputStream is, boolean isShareable) argument
145 newInstance(String pathName, boolean isShareable) argument
266 nativeNewInstance( byte[] data, int offset, int length, boolean isShareable) argument
268 nativeNewInstance( FileDescriptor fd, boolean isShareable) argument
270 nativeNewInstance( InputStream is, byte[] storage, boolean isShareable) argument
272 nativeNewInstance( int asset, boolean isShareable) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp99 int offset, int length, jboolean isShareable) {
100 /* If isShareable we could decide to just wrap the java array and
102 For now we just always copy the array's data if isShareable.
110 jobject fileDescriptor, jboolean isShareable) {
122 if (isShareable &&
153 jboolean isShareable) {
168 jboolean isShareable) {
98 nativeNewInstanceFromByteArray(JNIEnv* env, jobject, jbyteArray byteArray, int offset, int length, jboolean isShareable) argument
109 nativeNewInstanceFromFileDescriptor(JNIEnv* env, jobject clazz, jobject fileDescriptor, jboolean isShareable) argument
150 nativeNewInstanceFromStream(JNIEnv* env, jobject clazz, jobject is, jbyteArray storage, jboolean isShareable) argument
166 nativeNewInstanceFromAsset(JNIEnv* env, jobject clazz, jint native_asset, jboolean isShareable) argument
H A DBitmapFactory.cpp433 bool isShareable = optionsShareable(env, bitmapFactoryOptions); local
435 if (isPurgeable && isShareable) {

Completed in 237 milliseconds