HomeSort by relevance Sort by last modified time
    Searched defs:InputDeviceIdentifier (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/hardware/input/
InputDeviceIdentifier.java 27 public final class InputDeviceIdentifier implements Parcelable {
32 public InputDeviceIdentifier(String descriptor, int vendorId, int productId) {
38 private InputDeviceIdentifier(Parcel src) {
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/
InputDevice.h 28 struct InputDeviceIdentifier {
29 inline 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 363 milliseconds