HomeSort by relevance Sort by last modified time
    Searched refs:mProductId (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/hardware/input/
InputDeviceIdentifier.java 30 private final int mProductId;
35 this.mProductId = productId;
41 mProductId = src.readInt();
53 dest.writeInt(mProductId);
65 return mProductId;
  /frameworks/base/core/java/android/hardware/usb/
UsbDevice.java 49 private final int mProductId;
67 mProductId = productId;
141 return mProductId;
262 ",mVendorId=" + mVendorId + ",mProductId=" + mProductId +
305 parcel.writeInt(mProductId);
  /frameworks/base/core/java/android/view/
InputDevice.java 51 private final int mProductId;
366 mProductId = productId;
383 mProductId = in.readInt();
391 mIdentifier = new InputDeviceIdentifier(mDescriptor, mVendorId, mProductId);
504 return mProductId;
845 out.writeInt(mProductId);
    [all...]
  /frameworks/base/services/usb/java/com/android/server/usb/
UsbSettingsManager.java 106 public final int mProductId;
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) return false
    [all...]

Completed in 1499 milliseconds