HomeSort by relevance Sort by last modified time
    Searched refs:vendorId (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /frameworks/base/wifi/java/android/net/wifi/
AnqpInformationElement.java 63 public AnqpInformationElement(int vendorId, int elementId, byte[] payload) {
64 mVendorId = vendorId;
  /device/google/contexthub/util/nanotool/
apptohostevent.h 33 constexpr uint64_t MakeAppId(uint64_t vendorId, uint32_t appId) {
34 return (vendorId << 24) | (appId & 0x00FFFFFF);
  /frameworks/base/core/java/android/hardware/input/
InputDeviceIdentifier.java 35 public InputDeviceIdentifier(String descriptor, int vendorId, int productId) {
37 this.mVendorId = vendorId;
  /frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
accessorychat.c 88 uint16_t vendorId, productId;
98 vendorId = usb_device_get_vendor_id(device);
101 if (vendorId == 0x18D1 || vendorId == 0x22B8 || vendorId == 0x04e8) {
  /packages/apps/TV/src/com/android/usbtuner/
UsbInputController.java 86 private final int vendorId;
89 private TunerDevice(int vendorId, int productId) {
90 this.vendorId = vendorId;
95 return device.getVendorId() == vendorId && device.getProductId() == productId;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
napprotocol.h 42 UINT32 vendorId;
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecMessageBuilder.java 172 * @param vendorId device's vendor id
175 static HdmiCecMessage buildDeviceVendorIdCommand(int src, int vendorId) {
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,
465 byte[] params = new byte[operands.length + 3]; // parameter plus len(vendorId)
466 params[0] = (byte) ((vendorId >> 16) & 0xFF);
467 params[1] = (byte) ((vendorId >> 8) & 0xFF)
    [all...]
DeviceDiscoveryAction.java 306 int vendorId = HdmiUtils.threeBytesToInt(params);
307 current.mVendorId = vendorId;
HdmiCecLocalDevice.java 341 int vendorId = mService.getVendorId();
343 mAddress, vendorId);
563 int vendorId = HdmiUtils.threeBytesToInt(params);
564 if (vendorId == mService.getVendorId()) {
    [all...]
  /frameworks/base/core/java/android/hardware/hdmi/
HdmiDeviceInfo.java 131 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);
  /cts/apps/cts-usb-accessory/
cts-usb-accessory.c 84 uint16_t vendorId, productId;
101 vendorId = usb_device_get_vendor_id(device);
104 if (!sDevice && (vendorId == 0x18D1 && (productId == 0x2D00 || productId == 0x2D01))) {
112 vendorId, productId);
153 "- attempting to switch to accessory mode...\n", vendorId, productId);
  /external/rmi4utils/rmidevice/
hiddevice.h 81 static bool LookupHidDeviceName(int bus, int vendorId, int productId, std::string &deviceName);
  /frameworks/base/core/java/android/hardware/usb/
UsbDevice.java 64 public UsbDevice(String name, int vendorId, int productId,
68 mVendorId = vendorId;
290 int vendorId = in.readInt();
300 UsbDevice device = new UsbDevice(name, vendorId, productId, clasz, subClass, protocol,
  /hardware/libhardware/modules/input/evdev/
InputHost.cpp 78 int32_t vendorId, InputBus bus, const char* uniqueId) {
80 mHost, name, productId, vendorId, bus, uniqueId);
InputHost.h 152 int32_t vendorId, InputBus bus, const char* uniqueId) = 0;
173 int32_t vendorId, InputBus bus, const char* uniqueId) override;
  /hardware/libhardware/tests/input/evdev/
InputMocks.h 51 void setVendorId(uint16_t vendorId) { mVendorId = vendorId; }
MockInputHost.h 73 const char* name, int32_t productId, int32_t vendorId, InputBus bus,
  /frameworks/base/libs/usb/tests/accessorytest/
usb.c 87 uint16_t vendorId, productId;
97 vendorId = usb_device_get_vendor_id(device);
100 if (!current_device && vendorId == 0x18D1 && productId >= 0x2D00 && productId <= 0x2D05) {
  /frameworks/native/services/inputflinger/host/
InputDriver.cpp 51 int32_t vendorId;
126 const char* name, int32_t productId, int32_t vendorId,
131 .vendorId = vendorId,
216 idi.vendor = id->vendorId;
InputDriver.h 44 const char* name, int32_t productId, int32_t vendorId,
91 const char* name, int32_t productId, int32_t vendorId,
  /external/autotest/server/site_tests/kernel_ExternalUsbPeripheralsDetectionStress/
kernel_ExternalUsbPeripheralsDetectionStress.py 119 vendorId = connected_device_dict['deviceInfo']['vendorId']
136 if not ((vendorId + ':' + productId in lsusbOutput) and
138 vendorId, productId, manufacturer, productName) and
175 """Uses vendorId/device path and to get other device attributes.
187 usb_device_dict['deviceInfo']['vendorId'] = vendor_id
268 {'devicePath':None,'vendorId':None,'productId':None,
  /frameworks/base/core/java/android/view/
InputDevice.java 397 private InputDevice(int id, int generation, int controllerNumber, String name, int vendorId,
405 mVendorId = vendorId;
415 mIdentifier = new InputDeviceIdentifier(descriptor, vendorId, productId);
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_hdmi_HdmiCecController.cpp 225 uint32_t vendorId = 0;
226 mDevice->get_vendor_id(mDevice, &vendorId);
227 return vendorId;
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapStore.java 219 String vendorId = VendorPolicyLoader.getInstance(context).getImapIdValues(userName, host,
221 if (vendorId != null) {
223 id.append(vendorId);
  /external/autotest/client/common_lib/
smogcheck_tpm.py 122 vendorId = [i for i in vi.tpmVendorID if i]
123 logging.info(' TPM Vendor ID: %s', ''.join(vendorId))

Completed in 1962 milliseconds

1 2 3 4 5 6