OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mProductId
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/core/java/android/hardware/input/
InputDeviceIdentifier.java
33
private final int
mProductId
;
38
this.
mProductId
= productId;
44
mProductId
= src.readInt();
56
dest.writeInt(
mProductId
);
68
return
mProductId
;
77
return ((mVendorId == that.mVendorId) && (
mProductId
== that.
mProductId
)
83
return Objects.hash(mDescriptor, mVendorId,
mProductId
);
KeyboardLayout.java
40
private final int
mProductId
;
60
mProductId
= pid;
70
mProductId
= source.readInt();
125
return
mProductId
;
141
dest.writeInt(
mProductId
);
/frameworks/base/core/java/android/hardware/usb/
UsbDevice.java
51
private final int
mProductId
;
69
mProductId
= productId;
153
return
mProductId
;
274
",mVendorId=" + mVendorId + ",
mProductId
=" +
mProductId
+
318
parcel.writeInt(
mProductId
);
/hardware/libhardware/tests/input/evdev/
InputMocks.h
47
virtual uint16_t getProductId() const override { return
mProductId
; }
52
void setProductId(uint16_t productId) {
mProductId
= productId; }
111
uint16_t
mProductId
= 0;
/frameworks/base/core/java/android/view/
InputDevice.java
51
private final int
mProductId
;
406
mProductId
= productId;
424
mProductId
= in.readInt();
433
mIdentifier = new InputDeviceIdentifier(mDescriptor, mVendorId,
mProductId
);
546
return
mProductId
;
913
out.writeInt(
mProductId
);
[
all
...]
/frameworks/base/services/usb/java/com/android/server/usb/
UsbSettingsManager.java
105
public final int
mProductId
;
122
mProductId
= pid;
133
mProductId
= device.getProductId();
202
if (
mProductId
!= -1) {
203
serializer.attribute(null, "product-id", Integer.toString(
mProductId
));
234
if (
mProductId
!= -1 && device.getProductId() !=
mProductId
) return false;
262
if (
mProductId
!= -1 && f.
mProductId
!=
mProductId
) return false
[
all
...]
/hardware/libhardware/modules/input/evdev/
InputHub.cpp
102
virtual uint16_t getProductId() const override { return
mProductId
; }
139
uint16_t
mProductId
;
208
mProductId
= inputId.product;
230
mBusType, mVendorId,
mProductId
, mVersion);
Completed in 234 milliseconds