Searched refs:pointerIconObj (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/jni/ |
D | android_view_PointerIcon.cpp | 49 jobject pointerIconObj = env->CallStaticObjectMethod(gPointerIconClassInfo.clazz, in android_view_PointerIcon_getSystemIcon() local 57 return pointerIconObj; in android_view_PointerIcon_getSystemIcon() 60 status_t android_view_PointerIcon_load(JNIEnv* env, jobject pointerIconObj, jobject contextObj, in android_view_PointerIcon_load() argument 64 if (!pointerIconObj) { in android_view_PointerIcon_load() 68 ScopedLocalRef<jobject> loadedPointerIconObj(env, env->CallObjectMethod(pointerIconObj, in android_view_PointerIcon_load() 79 status_t android_view_PointerIcon_getLoadedIcon(JNIEnv* env, jobject pointerIconObj, in android_view_PointerIcon_getLoadedIcon() argument 81 if (!pointerIconObj) { in android_view_PointerIcon_getLoadedIcon() 84 outPointerIcon->style = env->GetIntField(pointerIconObj, gPointerIconClassInfo.mType); in android_view_PointerIcon_getLoadedIcon() 85 outPointerIcon->hotSpotX = env->GetFloatField(pointerIconObj, gPointerIconClassInfo.mHotSpotX); in android_view_PointerIcon_getLoadedIcon() 86 outPointerIcon->hotSpotY = env->GetFloatField(pointerIconObj, gPointerIconClassInfo.mHotSpotY); in android_view_PointerIcon_getLoadedIcon() [all …]
|
D | android_view_PointerIcon.h | 98 jobject pointerIconObj, jobject contextObj, PointerIcon* outPointerIcon); 101 extern status_t android_view_PointerIcon_getLoadedIcon(JNIEnv* env, jobject pointerIconObj,
|
/frameworks/base/services/core/jni/ |
D | com_android_server_input_InputManagerService.cpp | 1165 ScopedLocalRef<jobject> pointerIconObj(env, env->CallObjectMethod( in loadPointerIcon() local 1172 status_t status = android_view_PointerIcon_load(env, pointerIconObj.get(), in loadPointerIcon()
|