/ohos5.0/drivers/hdf_core/framework/model/input/driver/ |
H A D | input_config_parser.c | 139 ret = parser->GetUint32Array(busNode, "i2cClkIomux", bus->i2c.i2cClkReg, REG_CONFIG_LEN, 0); in ParseBus() 141 … ret = parser->GetUint32Array(busNode, "i2cDataIomux", bus->i2c.i2cDataReg, REG_CONFIG_LEN, 0); in ParseBus() 168 ret = parser->GetUint32Array(pinsNode, "rstRegCfg", pins->rstPinReg, REG_CONFIG_LEN, 0); in ParsePins() 170 ret = parser->GetUint32Array(pinsNode, "intRegCfg", pins->intPinReg, REG_CONFIG_LEN, 0); in ParsePins() 262 ret = parser->GetUint32Array(seqNode, "powerOnSeq", pwrSeq->pwrOn.buf, num, 0); in ParsePowerSequence() 273 ret = parser->GetUint32Array(seqNode, "suspendSeq", pwrSeq->suspend.buf, num, 0); in ParsePowerSequence() 286 ret = parser->GetUint32Array(seqNode, "resumeSeq", pwrSeq->resume.buf, num, 0); in ParsePowerSequence() 301 ret = parser->GetUint32Array(seqNode, "powerOffSeq", pwrSeq->pwrOff.buf, num, 0); in ParsePowerSequence()
|
/ohos5.0/drivers/hdf_core/framework/model/camera/parser/src/ |
H A D | camera_config_parser.c | 60 …ret = drsOps->GetUint32Array(node, "ctrlValue", sensorConfig->ctrlValue, sensorConfig->ctrlValueNu… in ParseCameraSensorDeviceConfig() 101 … ret = drsOps->GetUint32Array(node, "ctrlValue", ispConfig->ctrlValue, ispConfig->ctrlValueNum, 0); in ParseCameraIspDeviceConfig() 134 … ret = drsOps->GetUint32Array(node, "ctrlValue", vcmConfig->ctrlValue, vcmConfig->ctrlValueNum, 0); in ParseCameraVcmDeviceConfig() 161 …ret = drsOps->GetUint32Array(node, "ctrlValue", lensConfig->ctrlValue, lensConfig->ctrlValueNum, 0… in ParseCameraLensDeviceConfig() 188 …ret = drsOps->GetUint32Array(node, "ctrlValue", flashConfig->ctrlValue, flashConfig->ctrlValueNum,… in ParseCameraFlashDeviceConfig() 231 …ret = drsOps->GetUint32Array(node, "bufferType", streamConfig->bufferType, streamConfig->bufferTyp… in ParseCameraStreamDeviceConfig() 243 …ret = drsOps->GetUint32Array(node, "formatType", streamConfig->formatType, streamConfig->formatTyp… in ParseCameraStreamDeviceConfig() 507 drsOps->GetElemNum == NULL || drsOps->GetUint32Array == NULL) { in HdfParseCameraConfig()
|
/ohos5.0/drivers/hdf_core/framework/test/unittest/platform/common/ |
H A D | uart_driver_test.c | 54 if (drsOps == NULL || drsOps->GetUint32 == NULL || drsOps->GetUint32Array == NULL) { in UartTestReadConfig() 79 ret = drsOps->GetUint32Array(node, "wbuf", tmp, config->len, 0); in UartTestReadConfig()
|
H A D | regulator_test.c | 344 if (face->GetUint32 == NULL || face->GetUint32Array == NULL) { in RegulatorTestInitFromHcs()
|
H A D | i2s_test.c | 435 if (face->GetUint32 == NULL || face->GetUint32Array == NULL) { in I2sTestInitFromHcs()
|
/ohos5.0/drivers/hdf_core/framework/model/display/driver/lcdkit/ |
H A D | lcdkit_parse_config.c | 166 if (drsOps->GetUint32Array(node, "powerSetting", array, count, 0) != HDF_SUCCESS) { in ParsePowerSetting() 203 if (drsOps->GetUint32Array(node, name, array, count, 0) != HDF_SUCCESS) { in ParsePowerSequeue() 231 if (drsOps == NULL || drsOps->GetUint32 == NULL || drsOps->GetUint32Array == NULL || in ParsePanelConfig()
|
/ohos5.0/drivers/hdf_core/framework/utils/src/hcs_parser/ |
H A D | device_resource_if.c | 25 instance->GetUint32Array = HcsGetUint32Array; in HcsIfaceConstruct()
|
/ohos5.0/drivers/hdf_core/interfaces/inner_api/utils/ |
H A D | device_resource_if.h | 260 …int32_t (*GetUint32Array)(const struct DeviceResourceNode *node, const char *attrName, uint32_t *v… member
|
/ohos5.0/drivers/peripheral/codec/hal/idl_service/src/ |
H A D | codec_component_config.cpp | 294 …iface.GetUint32Array(&node, attr.attrName.c_str(), reinterpret_cast<uint32_t *>(array.get()), coun… in GetUintTableConfig() 314 iface.GetUint32Array(&node, attrName.c_str(), values.get(), count, 0); in GetMaskedConfig()
|
/ohos5.0/drivers/peripheral/codec/hal/src/ |
H A D | codec_config_parser.c | 79 iface->GetUint32Array(node, attr->attrName, (uint32_t *)attr->array, count, 0); in GetUintTableConfig() 109 iface->GetUint32Array(node, attrName, values, count, 0); in GetMaskedConfig()
|
/ohos5.0/drivers/peripheral/codec/image/config/ |
H A D | codec_image_config.cpp | 175 …iface.GetUint32Array(&node, attr.attrName.c_str(), reinterpret_cast<uint32_t *>(array.get()), coun… in GetUintTableConfig()
|
/ohos5.0/drivers/hdf_core/framework/model/sensor/driver/ppg/ |
H A D | sensor_ppg_config.c | 55 ret = parser->GetUint32Array(node, "multiUseSet", (uint32_t *)pinCfg->multiUsePin, num, 0); in ParsePpgPinMuxConfig()
|
/ohos5.0/drivers/hdf_core/framework/test/unittest/utils/hcs_parser/unittest/ |
H A D | hcs_config_test.c | 648 …ret = g_devResInstance->GetUint32Array(g_testRoot, BOARD_ID, data, BOARDID_LENGTH, DEFAULT_UINT32_… in HcsTestGetUint32ArraySuccess() 663 ret = g_devResInstance->GetUint32Array(g_testRoot, BOARD_ID, data, 0, DEFAULT_UINT32_MAX); in HcsTestGetUint32ArrayFail() 669 …ret = g_devResInstance->GetUint32Array(g_testRoot, BOARD_ID, data, DATA_TYPE_NUM_U32, DEFAULT_UINT… in HcsTestGetUint32ArrayFail()
|
/ohos5.0/drivers/hdf_core/adapter/platform/i2c/ |
H A D | i2c_stm32f4xx.c | 107 …if (dri == NULL || dri->GetUint8 == NULL || dri->GetUint32 == NULL || dri->GetUint32Array == NULL)… in GetI2cDeviceResource()
|
/ohos5.0/drivers/hdf_core/framework/model/misc/vibrator/driver/src/ |
H A D | vibrator_haptic.c | 98 ret = parser->GetUint32Array(childNode, "seq", effectNode->seq, count, 0); in ParserHapticEffect()
|
/ohos5.0/drivers/hdf_core/framework/model/audio/core/src/ |
H A D | audio_parse.c | 172 ret = parser->GetUint32Array(regNode, g_audioRegGroupName[index], buf, num, 0); in GetRegArray()
|
/ohos5.0/drivers/hdf_core/framework/model/sensor/driver/common/src/ |
H A D | sensor_config_parser.c | 487 ret = parser->GetUint32Array(directionNode, "convert", buf, num, 0); in ParseSensorDirection()
|