Searched defs:InputDeviceIdentifier (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/hardware/input/
H A DInputDeviceIdentifier.java27 public final class InputDeviceIdentifier implements Parcelable { class in inherits:Parcelable
32 public InputDeviceIdentifier(String descriptor, int vendorId, int productId) { method in class:InputDeviceIdentifier
38 private InputDeviceIdentifier(Parcel src) { method in class:InputDeviceIdentifier
68 public static final Parcelable.Creator<InputDeviceIdentifier> CREATOR =
69 new Parcelable.Creator<InputDeviceIdentifier>() {
72 public InputDeviceIdentifier createFromParcel(Parcel source) {
73 return new InputDeviceIdentifier(source);
77 public InputDeviceIdentifier[] newArray(int size) {
78 return new InputDeviceIdentifier[size];
/frameworks/native/include/input/
H A DInputDevice.h28 struct InputDeviceIdentifier { struct in namespace:android
29 inline InputDeviceIdentifier() : function in struct:android::InputDeviceIdentifier
76 const InputDeviceIdentifier& identifier, const String8& alias, bool isExternal);
81 inline const InputDeviceIdentifier& getIdentifier() const { return mIdentifier; }
121 InputDeviceIdentifier mIdentifier;
150 const InputDeviceIdentifier& deviceIdentifier,

Completed in 952 milliseconds