Lines Matching refs:getDescriptorParam

303     usb_host_process_descriptor_param_t getDescriptorParam;  in USB_HostProcessState()  local
332 getDescriptorParam.descriptorLength = (uint16_t)sizeof(usb_descriptor_device_t); in USB_HostProcessState()
335 getDescriptorParam.descriptorLength = 8U; in USB_HostProcessState()
337 getDescriptorParam.descriptorBuffer = (uint8_t *)deviceInstance->deviceDescriptor; in USB_HostProcessState()
338 getDescriptorParam.descriptorType = USB_DESCRIPTOR_TYPE_DEVICE; in USB_HostProcessState()
339 getDescriptorParam.descriptorIndex = 0U; in USB_HostProcessState()
340 getDescriptorParam.languageId = 0U; in USB_HostProcessState()
344 … status = USB_HostStandardSetGetDescriptor(deviceInstance, transfer, &getDescriptorParam); in USB_HostProcessState()
352 getDescriptorParam.descriptorBuffer = deviceInstance->enumBuffer; in USB_HostProcessState()
353 getDescriptorParam.descriptorType = USB_DESCRIPTOR_TYPE_CONFIGURE; in USB_HostProcessState()
354 getDescriptorParam.descriptorIndex = deviceInstance->configurationValue; in USB_HostProcessState()
355 getDescriptorParam.descriptorLength = 9; in USB_HostProcessState()
356 getDescriptorParam.languageId = 0; in USB_HostProcessState()
360 … status = USB_HostStandardSetGetDescriptor(deviceInstance, transfer, &getDescriptorParam); in USB_HostProcessState()
364 getDescriptorParam.descriptorBuffer = deviceInstance->configurationDesc; in USB_HostProcessState()
365 getDescriptorParam.descriptorType = USB_DESCRIPTOR_TYPE_CONFIGURE; in USB_HostProcessState()
366 getDescriptorParam.descriptorIndex = deviceInstance->configurationValue; in USB_HostProcessState()
367 getDescriptorParam.descriptorLength = deviceInstance->configurationLen; in USB_HostProcessState()
368 getDescriptorParam.languageId = 0; in USB_HostProcessState()
372 … status = USB_HostStandardSetGetDescriptor(deviceInstance, transfer, &getDescriptorParam); in USB_HostProcessState()