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

  /frameworks/base/core/jni/
android_view_PointerIcon.cpp 49 jobject pointerIconObj = env->CallStaticObjectMethod(gPointerIconClassInfo.clazz,
57 return pointerIconObj;
60 status_t android_view_PointerIcon_load(JNIEnv* env, jobject pointerIconObj, jobject contextObj,
64 if (!pointerIconObj) {
68 ScopedLocalRef<jobject> loadedPointerIconObj(env, env->CallObjectMethod(pointerIconObj,
79 status_t android_view_PointerIcon_getLoadedIcon(JNIEnv* env, jobject pointerIconObj,
81 outPointerIcon->style = env->GetIntField(pointerIconObj, gPointerIconClassInfo.mType);
82 outPointerIcon->hotSpotX = env->GetFloatField(pointerIconObj, gPointerIconClassInfo.mHotSpotX);
83 outPointerIcon->hotSpotY = env->GetFloatField(pointerIconObj, gPointerIconClassInfo.mHotSpotY);
86 env, env->GetObjectField(pointerIconObj, gPointerIconClassInfo.mBitmap))
    [all...]
android_view_PointerIcon.h 96 * If pointerIconObj is NULL, returns OK and a pointer icon with POINTER_ICON_STYLE_NULL. */
98 jobject pointerIconObj, jobject contextObj, PointerIcon* outPointerIcon);
100 /* Obtain the data of pointerIconObj and put to outPointerIcon. */
101 extern status_t android_view_PointerIcon_getLoadedIcon(JNIEnv* env, jobject pointerIconObj,
106 * If pointerIconObj is NULL, returns OK and a pointer icon with POINTER_ICON_STYLE_NULL. */
  /frameworks/base/services/core/jni/
com_android_server_input_InputManagerService.cpp     [all...]

Completed in 1954 milliseconds