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.java49 private final int mProductId; field in class:UsbDevice
67 mProductId = productId;
141 return mProductId;
262 ",mVendorId=" + mVendorId + ",mProductId=" + mProductId +
305 parcel.writeInt(mProductId);
/frameworks/base/core/java/android/view/
H A DInputDevice.java51 private final int mProductId; field in class:InputDevice
366 mProductId = productId;
383 mProductId = in.readInt();
391 mIdentifier = new InputDeviceIdentifier(mDescriptor, mVendorId, mProductId);
504 return mProductId;
845 out.writeInt(mProductId);
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbSettingsManager.java106 public final int mProductId; field in class:UsbSettingsManager.DeviceFilter
123 mProductId = pid;
134 mProductId = device.getProductId();
203 if (mProductId != -1) {
204 serializer.attribute(null, "product-id", Integer.toString(mProductId));
235 if (mProductId != -1 && device.getProductId() != mProductId) return false;
263 if (mProductId != -1 && f.mProductId != mProductId) retur
[all...]

Completed in 655 milliseconds