Home | History | Annotate | Download | only in jni

Lines Matching refs:deviceInfo

37 jobject android_view_InputDevice_create(JNIEnv* env, const InputDeviceInfo& deviceInfo) {
38 ScopedLocalRef<jstring> nameObj(env, env->NewStringUTF(deviceInfo.getDisplayName().string()));
44 env->NewStringUTF(deviceInfo.getIdentifier().descriptor.string()));
50 android_view_KeyCharacterMap_create(env, deviceInfo.getId(),
51 deviceInfo.getKeyCharacterMap()));
56 const InputDeviceIdentifier& ident = deviceInfo.getIdentifier();
59 gInputDeviceClassInfo.ctor, deviceInfo.getId(), deviceInfo.getGeneration(),
60 deviceInfo.getControllerNumber(), nameObj.get(),
62 descriptorObj.get(), deviceInfo.isExternal(), deviceInfo.getSources(),
63 deviceInfo.getKeyboardType(), kcmObj.get(), deviceInfo.hasVibrator(),
64 deviceInfo.hasButtonUnderPad()));
66 const Vector<InputDeviceInfo::MotionRange>& ranges = deviceInfo.getMotionRanges();