Searched defs:vendorId (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/hardware/input/
H A DInputDeviceIdentifier.java32 public InputDeviceIdentifier(String descriptor, int vendorId, int productId) { argument
34 this.mVendorId = vendorId;
/frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
H A Daccessorychat.c88 uint16_t vendorId, productId; local
98 vendorId = usb_device_get_vendor_id(device);
101 if (vendorId == 0x18D1 || vendorId == 0x22B8 || vendorId == 0x04e8) {
/frameworks/base/libs/usb/tests/accessorytest/
H A Dusb.c87 uint16_t vendorId, productId; local
97 vendorId = usb_device_get_vendor_id(device);
100 if (!current_device && vendorId == 0x18D1 && productId >= 0x2D00 && productId <= 0x2D05) {
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDevice.java62 public UsbDevice(String name, int vendorId, int productId, argument
66 mVendorId = vendorId;
278 int vendorId = in.readInt();
287 UsbDevice device = new UsbDevice(name, vendorId, productId, clasz, subClass, protocol,
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiDeviceInfo.java131 int vendorId = source.readInt();
135 deviceType, vendorId, displayName, powerStatus);
162 * @param vendorId vendor id of device. Used for vendor specific command.
168 int vendorId, String displayName, int powerStatus) {
176 mVendorId = vendorId;
191 * @param vendorId vendor id of device. Used for vendor specific command.
196 int vendorId, String displayName) {
198 vendorId, displayName, HdmiControlManager.POWER_STATUS_UNKNOWN);
167 HdmiDeviceInfo(int logicalAddress, int physicalAddress, int portId, int deviceType, int vendorId, String displayName, int powerStatus) argument
195 HdmiDeviceInfo(int logicalAddress, int physicalAddress, int portId, int deviceType, int vendorId, String displayName) argument
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecMessageBuilder.java172 * @param vendorId device's vendor id
175 static HdmiCecMessage buildDeviceVendorIdCommand(int src, int vendorId) { argument
177 (byte) ((vendorId >> 16) & 0xFF),
178 (byte) ((vendorId >> 8) & 0xFF),
179 (byte) (vendorId & 0xFF)
459 * @param vendorId vendor ID
463 static HdmiCecMessage buildVendorCommandWithId(int src, int dest, int vendorId, argument
465 byte[] params = new byte[operands.length + 3]; // parameter plus len(vendorId)
466 params[0] = (byte) ((vendorId >> 16) & 0xFF);
467 params[1] = (byte) ((vendorId >>
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_hdmi_HdmiCecController.cpp225 uint32_t vendorId = 0; local
226 mDevice->get_vendor_id(mDevice, &vendorId);
227 return vendorId;
/frameworks/base/core/java/android/view/
H A DInputDevice.java358 private InputDevice(int id, int generation, int controllerNumber, String name, int vendorId, argument
365 mVendorId = vendorId;
374 mIdentifier = new InputDeviceIdentifier(descriptor, vendorId, productId);

Completed in 164 milliseconds