Home
last modified time | relevance | path

Searched refs:bNumInterfaces (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-driverdevelopment-kit/
H A D_usb_config_descriptor.md27 | [bNumInterfaces](#bnuminterfaces) | 该配置所支持的接口数量。 |
97 ### bNumInterfaces subsection
101 uint8_t UsbConfigDescriptor::bNumInterfaces
H A Dusb__ddk__types_8h.md79 | [bNumInterfaces](#bnuminterfaces) | 该配置所支持的接口数量。 |
357 ### bNumInterfaces subsection
361 uint8_t bNumInterfaces
/ohos5.0/docs/en/application-dev/reference/apis-driverdevelopment-kit/
H A D_usb_config_descriptor.md27 | [bNumInterfaces](#bnuminterfaces) | Number of interfaces supported by the configuration.|
97 ### bNumInterfaces subsection
101 uint8_t UsbConfigDescriptor::bNumInterfaces
H A Dusb__ddk__types_8h.md79 | [bNumInterfaces](#bnuminterfaces) | Number of interfaces supported by the configuration.|
357 ### bNumInterfaces subsection
361 uint8_t bNumInterfaces
/ohos5.0/drivers/external_device_manager/frameworks/ddk/usb/
H A Dusb_config_desc_parser.cpp422 for (i = 0; i < config.configDescriptor.bNumInterfaces; i++) { in RawClearConfiguration()
458 if (config.configDescriptor.bNumInterfaces >= USB_MAXINTERFACES) { in ParseConfigurationDes()
459 …GE(MODULE_USB_DDK, "%{public}d: bNumInterfaces overlong.", config.configDescriptor.bNumInterfaces); in ParseConfigurationDes()
463 for (; i < config.configDescriptor.bNumInterfaces; ++i) { in ParseConfigurationDes()
468 if (i == config.configDescriptor.bNumInterfaces) { in ParseConfigurationDes()
500 (config.configDescriptor.bNumInterfaces > USB_MAXINTERFACES)) { in ParseConfiguration()
516 config.configDescriptor.bNumInterfaces = (uint8_t)intfNum; in ParseConfiguration()
/ohos5.0/drivers/peripheral/usb/ddk/host/src/
H A Dusb_protocol.c118 if (config->configDescriptor.bNumInterfaces < idx + 1) { in UsbGetInterfaceFromConfig()
195 for (int32_t i = 0; i < config->configDescriptor.bNumInterfaces; i++) { in UsbProtocalCreatInterfaceObj()
H A Dusb_raw_api_library.c563 if (config->configDescriptor.bNumInterfaces >= USB_MAXINTERFACES) { in ParseConfigurationDes()
564 … HDF_LOGE("%{public}d: bNumInterfaces overlong.", config->configDescriptor.bNumInterfaces); in ParseConfigurationDes()
568 for (i = 0; i < config->configDescriptor.bNumInterfaces; ++i) { in ParseConfigurationDes()
602 (config->configDescriptor.bNumInterfaces > USB_MAXINTERFACES)) { in ParseConfiguration()
609 config->configDescriptor.bNumInterfaces = (uint8_t)intfNum; in ParseConfiguration()
1270 for (i = 0; i < config->configDescriptor.bNumInterfaces; i++) { in RawClearConfiguration()
/ohos5.0/drivers/external_device_manager/interfaces/ddk/usb/
H A Dusb_ddk_types.h122 uint8_t bNumInterfaces; member
/ohos5.0/base/usb/usb_manager/services/native/src/
H A Dusb_descriptor_parser.cpp89 …_HILOGD(MODULE_USB_SERVICE, "add config, interfaces=%{public}u", configDescriptor->bNumInterfaces); in AddConfig()
214 for (int32_t i = 0; (i < configDescriptor.bNumInterfaces) && (cursor < length); ++i) { in ParseConfigDescriptor()
/ohos5.0/drivers/peripheral/usb/hdi_service/include/
H A Dusbd_type.h169 uint8_t bNumInterfaces; member
/ohos5.0/drivers/external_device_manager/services/native/driver_extension_manager/src/bus_extension/usb/
H A Dusb_dev_subscriber.cpp106 for (uint8_t i = 0; i < config->configDescriptor.bNumInterfaces; i++) { in GetInterfaceDescriptor()
/ohos5.0/drivers/peripheral/usb/interfaces/ddk/common/
H A Dusb_ddk.h182 uint8_t bNumInterfaces; member
/ohos5.0/drivers/peripheral/usb/net/src/
H A Dusb_net_host.c838 HARCH_INFO_PRINT("bNumInterfaces = %{public}d", tmpConfig->configDescriptor.bNumInterfaces); in UsbnetHostPrintConfigDescriptor()
843 for (int i = 0; i < tmpConfig->configDescriptor.bNumInterfaces; i++) { in UsbnetHostPrintConfigDescriptor()
/ohos5.0/drivers/hdf_core/framework/test/unittest/model/usb/host/src/
H A Dusb_raw_io.c312 numInterfaces = config->configDescriptor.bNumInterfaces; in UsbParseConfigDescriptor()
/ohos5.0/drivers/hdf_core/adapter/khdf/linux/model/usb/host/src/
H A Dusb_pnp_notify.c189 deviceInfo->info.numInfos = infoData.usbDev->actconfig->desc.bNumInterfaces; in UsbPnpNotifyAddInitInfo()
/ohos5.0/drivers/external_device_manager/test/unittest/ndk_stage_js_test/entry/src/main/cpp/
H A Dusb_ddk_ndk_test.cpp73 for (uint32_t intIdx = PARAM_0; intIdx < config->configDescriptor.bNumInterfaces; ++intIdx) { in GetEndpointInfo()
/ohos5.0/drivers/peripheral/usb/test/unittest/host_sdk/
H A Dusb_raw_sdk_if_test.cpp311 uint8_t numInterfaces = config->configDescriptor.bNumInterfaces; in UsbParseConfigDescriptor()