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 227 jobject javaBitmap = NULL;
247 javaBitmap = env->GetObjectField(options, gOptions_bitmapFieldID);
274 if (javaBitmap != NULL) {
275 outputBitmap = (SkBitmap*) env->GetIntField(javaBitmap, gBitmap_nativeBitmapFieldID);
278 javaBitmap = NULL;
281 existingBufferSize = GraphicsJNI::getBitmapAllocationByteCount(env, javaBitmap);
296 SkBitmap::Allocator* outputAllocator = (javaBitmap != NULL) ?
304 } else if (javaBitmap != NULL) {
388 if (javaBitmap != NULL) {
389 env->SetObjectField(javaBitmap, gBitmap_layoutBoundsFieldID, layoutBounds)
    [all...]
GraphicsJNI.h 67 static void reinitBitmap(JNIEnv* env, jobject javaBitmap, SkBitmap* bitmap,
70 static int getBitmapAllocationByteCount(JNIEnv* env, jobject javaBitmap);
Graphics.cpp 371 void GraphicsJNI::reinitBitmap(JNIEnv* env, jobject javaBitmap, SkBitmap* bitmap,
374 env->CallVoidMethod(javaBitmap, gBitmap_reinitMethodID,
378 int GraphicsJNI::getBitmapAllocationByteCount(JNIEnv* env, jobject javaBitmap)
380 return env->CallIntMethod(javaBitmap, gBitmap_getAllocationByteCountMethodID);

Completed in 3980 milliseconds