HomeSort by relevance Sort by last modified time
    Searched refs:javaBitmap (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/jni/android/graphics/
BitmapFactory.cpp 222 jobject javaBitmap = NULL;
242 javaBitmap = env->GetObjectField(options, gOptions_bitmapFieldID);
268 if (javaBitmap != NULL) {
269 outputBitmap = (SkBitmap*) env->GetLongField(javaBitmap, gBitmap_nativeBitmapFieldID);
272 javaBitmap = NULL;
275 existingBufferSize = GraphicsJNI::getBitmapAllocationByteCount(env, javaBitmap);
288 SkBitmap::Allocator* outputAllocator = (javaBitmap != NULL) ?
296 } else if (javaBitmap != NULL) {
373 if (javaBitmap != NULL) {
374 env->SetObjectField(javaBitmap, gBitmap_ninePatchInsetsFieldID, ninePatchInsets)
    [all...]
GraphicsJNI.h 88 static void reinitBitmap(JNIEnv* env, jobject javaBitmap, SkBitmap* bitmap,
91 static int getBitmapAllocationByteCount(JNIEnv* env, jobject javaBitmap);
Graphics.cpp 438 void GraphicsJNI::reinitBitmap(JNIEnv* env, jobject javaBitmap, SkBitmap* bitmap,
445 env->CallVoidMethod(javaBitmap, gBitmap_reinitMethodID,
449 int GraphicsJNI::getBitmapAllocationByteCount(JNIEnv* env, jobject javaBitmap)
451 return env->CallIntMethod(javaBitmap, gBitmap_getAllocationByteCountMethodID);

Completed in 1485 milliseconds