OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:javaBitmap
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/jni/android/graphics/
BitmapFactory.cpp
241
jobject
javaBitmap
= NULL;
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_layoutBoundsFieldID, layoutBounds)
[
all
...]
GraphicsJNI.h
71
static void reinitBitmap(JNIEnv* env, jobject
javaBitmap
, SkBitmap* bitmap,
74
static int getBitmapAllocationByteCount(JNIEnv* env, jobject
javaBitmap
);
Graphics.cpp
387
void GraphicsJNI::reinitBitmap(JNIEnv* env, jobject
javaBitmap
, SkBitmap* bitmap,
394
env->CallVoidMethod(
javaBitmap
, gBitmap_reinitMethodID,
398
int GraphicsJNI::getBitmapAllocationByteCount(JNIEnv* env, jobject
javaBitmap
)
400
return env->CallIntMethod(
javaBitmap
, gBitmap_getAllocationByteCountMethodID);
Completed in 143 milliseconds