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

/frameworks/base/core/java/android/hardware/input/
H A DInputDeviceIdentifier.java35 public InputDeviceIdentifier(String descriptor, int vendorId, int productId) { argument
37 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.java64 public UsbDevice(String name, int vendorId, int productId, argument
68 mVendorId = vendorId;
290 int vendorId = in.readInt();
300 UsbDevice device = new UsbDevice(name, vendorId, productId, clasz, subClass, protocol,
/frameworks/base/wifi/java/android/net/wifi/
H A DAnqpInformationElement.java63 public AnqpInformationElement(int vendorId, int elementId, byte[] payload) { argument
64 mVendorId = vendorId;
/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/native/services/inputflinger/host/
H A DInputDriver.cpp51 int32_t vendorId; member in struct:input_device_identifier
126 const char* name, int32_t productId, int32_t vendorId,
131 .vendorId = vendorId,
216 idi.vendor = id->vendorId;
125 createDeviceIdentifier( const char* name, int32_t productId, int32_t vendorId, input_bus_t bus, const char* uniqueId) argument
/frameworks/base/core/java/android/view/
H A DInputDevice.java397 private InputDevice(int id, int generation, int controllerNumber, String name, int vendorId, argument
405 mVendorId = vendorId;
415 mIdentifier = new InputDeviceIdentifier(descriptor, vendorId, productId);

Completed in 355 milliseconds