Searched refs:mProductId (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/hardware/input/
H A DInputDeviceIdentifier.java30 private final int mProductId; field in class:InputDeviceIdentifier
35 this.mProductId = productId;
41 mProductId = src.readInt();
53 dest.writeInt(mProductId);
65 return mProductId;
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDevice.java51 private final int mProductId; field in class:UsbDevice
69 mProductId = productId;
153 return mProductId;
274 ",mVendorId=" + mVendorId + ",mProductId=" + mProductId +
318 parcel.writeInt(mProductId);
/frameworks/base/core/java/android/view/
H A DInputDevice.java51 private final int mProductId; field in class:InputDevice
397 mProductId = productId;
415 mProductId = in.readInt();
424 mIdentifier = new InputDeviceIdentifier(mDescriptor, mVendorId, mProductId);
537 return mProductId;
886 out.writeInt(mProductId);
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbSettingsManager.java107 public final int mProductId; field in class:UsbSettingsManager.DeviceFilter
124 mProductId = pid;
135 mProductId = device.getProductId();
204 if (mProductId != -1) {
205 serializer.attribute(null, "product-id", Integer.toString(mProductId));
236 if (mProductId != -1 && device.getProductId() != mProductId) return false;
264 if (mProductId != -1 && f.mProductId != mProductId) retur
[all...]

Completed in 103 milliseconds