Searched refs:javaBitmap (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp241 jobject javaBitmap = NULL; local
261 javaBitmap = env->GetObjectField(options, gOptions_bitmapFieldID);
288 if (javaBitmap != NULL) {
289 outputBitmap = (SkBitmap*) env->GetIntField(javaBitmap, gBitmap_nativeBitmapFieldID);
292 javaBitmap = NULL;
295 existingBufferSize = GraphicsJNI::getBitmapAllocationByteCount(env, javaBitmap);
310 SkBitmap::Allocator* outputAllocator = (javaBitmap != NULL) ?
318 } else if (javaBitmap != NULL) {
402 if (javaBitmap != NULL) {
403 env->SetObjectField(javaBitmap, gBitmap_layoutBoundsFieldI
[all...]
H A DGraphicsJNI.h71 static void reinitBitmap(JNIEnv* env, jobject javaBitmap, SkBitmap* bitmap,
74 static int getBitmapAllocationByteCount(JNIEnv* env, jobject javaBitmap);
H A DGraphics.cpp387 void GraphicsJNI::reinitBitmap(JNIEnv* env, jobject javaBitmap, SkBitmap* bitmap, argument
394 env->CallVoidMethod(javaBitmap, gBitmap_reinitMethodID,
398 int GraphicsJNI::getBitmapAllocationByteCount(JNIEnv* env, jobject javaBitmap) argument
400 return env->CallIntMethod(javaBitmap, gBitmap_getAllocationByteCountMethodID);

Completed in 59 milliseconds