/drivers/peripheral/camera/test/mpi/src/ |
H A D | dfx_test.cpp | 62 char property[] = "frame_timeout";
in HWTEST_F() local 64 result = SetParameter(property, value);
in HWTEST_F() 89 char property[] = "hdi_getstreamoperator_timeout";
in HWTEST_F() local 91 result = SetParameter(property, value);
in HWTEST_F() 95 int parameter = GetParameter(property, defValue, value1, 32);
in HWTEST_F() 114 char property[] = "hdi_updatesettings_timeout";
in HWTEST_F() local 116 result = SetParameter(property, value);
in HWTEST_F() 120 int parameter = GetParameter(property, defValue, value1, 32);
in HWTEST_F() 143 char property[] = "hdi_getenabledresults_timeout";
in HWTEST_F() local 145 result = SetParameter(property, valu in HWTEST_F() 174 char property[] = "hdi_getenabledresults_timeout"; HWTEST_F() local 205 char property[] = "hdi_disableresult_timeout"; HWTEST_F() local 248 char property[] = "hdi_close_timeout"; HWTEST_F() local 270 char property[] = "Hdi_IsStreamsSupported_Timeout"; HWTEST_F() local 334 char property[] = "hdi_createstreams_timeout"; HWTEST_F() local 384 char property[] = "hdi_releasestreams_timeout"; HWTEST_F() local 434 char property[] = "hdi_commitstreams_timeout"; HWTEST_F() local 463 char property[] = "hdi_attachbufferqueue_timeout"; HWTEST_F() local 524 char property[] = "hdi_detachbufferqueue_timeout"; HWTEST_F() local 589 char property[] = "hdi_capture_timeout"; HWTEST_F() local 620 char property[] = "hdi_change_to_offlinestream_timeout"; HWTEST_F() local 673 char property[] = "hdi_offline_cancelcapture_timeout"; HWTEST_F() local 726 char property[] = "hdi_offline_releasestreams_timeout"; HWTEST_F() local 779 char property[] = "hdi_offline_release_timeout"; HWTEST_F() local 832 std::string property = "Frame_Timeout"; HWTEST_F() local 860 std::string property = "Hdi_GetStreamOperator_Timeout"; HWTEST_F() local 883 std::string property = "Hdi_UpdateSettings_Timeout"; HWTEST_F() local 910 std::string property = "Hdi_GetEnabledResults_Timeout"; HWTEST_F() local 939 std::string property = "Hdi_GetEnabledResults_Timeout"; HWTEST_F() local 968 std::string property = "Hdi_DisableResult_Timeout"; HWTEST_F() local 1008 std::string property = "Hdi_Close_Timeout"; HWTEST_F() local 1028 std::string property = "Hdi_IsStreamsSupported_Timeout"; HWTEST_F() local 1088 std::string property = "Hdi_CreateStreams_Timeout"; HWTEST_F() local 1136 std::string property = "Hdi_ReleaseStreams_Timeout"; HWTEST_F() local 1184 std::string property = "Hdi_CommitStreams_Timeout"; HWTEST_F() local 1212 std::string property = "Hdi_AttachBufferQueue_Timeout"; HWTEST_F() local 1271 std::string property = "Hdi_DetachBufferQueue_Timeout"; HWTEST_F() local 1334 std::string property = "Hdi_Capture_Timeout"; HWTEST_F() local 1364 std::string property = "Hdi_ChangeToOfflineStream_Timeout"; HWTEST_F() local 1414 std::string property = "Hdi_Offline_CancelCapture_Timeout"; HWTEST_F() local 1464 std::string property = "Hdi_Offline_ReleaseStreams_Timeout"; HWTEST_F() local 1515 std::string property = "Hdi_Offline_Release_Timeout"; HWTEST_F() local [all...] |
/drivers/hdf_core/framework/test/unittest/platform/virtual/ |
H A D | adc_virtual.c | 114 if (device == NULL || device->property == NULL) { in VirtualAdcInit() 115 HDF_LOGE("VirtualAdcInit: device or property is null!"); in VirtualAdcInit() 125 ret = VirtualAdcReadDrs(virtual, device->property); in VirtualAdcInit() 132 virtual->device.priv = (void *)device->property; in VirtualAdcInit() 154 if (device == NULL || device->property == NULL) { in VirtualAdcRelease() 155 HDF_LOGE("VirtualAdcRelease: device or property is null!"); in VirtualAdcRelease() 165 ret = drsOps->GetUint32(device->property, "devNum", (uint32_t *)&devNum, 0); in VirtualAdcRelease() 173 if (dev != NULL && dev->priv == device->property) { in VirtualAdcRelease()
|
H A D | clock_virtual.c | 193 if (device == NULL || device->property == NULL) { in VirtualClockInit() 194 HDF_LOGE("VirtualClockInit: device or property is null!"); in VirtualClockInit() 204 ret = VirtualClockReadDrs(virtual, device->property); in VirtualClockInit() 211 virtual->device.priv = (void *)device->property; in VirtualClockInit() 233 if (device == NULL || device->property == NULL) { in VirtualClockRelease() 234 HDF_LOGE("VirtualClockRelease: device or property is null!"); in VirtualClockRelease() 244 ret = drsOps->GetUint32(device->property, "deviceIndex", (uint32_t *)&deviceIndex, 0); in VirtualClockRelease() 251 if (dev != NULL && dev->priv == device->property) { in VirtualClockRelease()
|
H A D | dac_virtual.c | 127 if (device == NULL || device->property == NULL) { in VirtualDacInit() 128 HDF_LOGE("VirtualDacInit: device or property is null!"); in VirtualDacInit() 133 DEV_RES_NODE_FOR_EACH_CHILD_NODE(device->property, childNode) { in VirtualDacInit() 176 if (device == NULL || device->property == NULL) { in VirtualDacRelease() 177 HDF_LOGE("VirtualDacRelease: device or property is null!"); in VirtualDacRelease() 181 DEV_RES_NODE_FOR_EACH_CHILD_NODE(device->property, childNode) { in VirtualDacRelease()
|
/drivers/peripheral/pin_auth/test/fuzztest/pin_auth/pinauthhdi_fuzzer/ |
H A D | pin_auth_hdi_fuzzer.cpp | 106 void FillFuzzProperty(Parcel &parcel, HdiProperty &property)
in FillFuzzProperty() argument 108 property.authSubType = parcel.ReadUint64();
in FillFuzzProperty() 109 property.lockoutDuration = parcel.ReadInt32();
in FillFuzzProperty() 110 property.remainAttempts = parcel.ReadInt32();
in FillFuzzProperty() 198 HdiProperty property;
in FuzzGetProperty() local 199 FillFuzzProperty(parcel, property);
in FuzzGetProperty() 200 g_executorImpl.GetProperty(templateIdList, propertyTypes, property);
in FuzzGetProperty()
|
/drivers/peripheral/face_auth/test/fuzztest/face_auth/faceauthallinoneexecutor_fuzzer/ |
H A D | all_in_one_executor_fuzzer.cpp | 127 void FillFuzzProperty(Parcel &parcel, Property &property) in FillFuzzProperty() argument 129 property.authSubType = parcel.ReadUint64(); in FillFuzzProperty() 130 property.lockoutDuration = parcel.ReadInt32(); in FillFuzzProperty() 131 property.remainAttempts = parcel.ReadInt32(); in FillFuzzProperty() 132 FillFuzzString(parcel, property.enrollmentProgress); in FillFuzzProperty() 133 FillFuzzString(parcel, property.sensorInfo); in FillFuzzProperty() 234 Property property; in FuzzGetProperty() local 235 FillFuzzProperty(parcel, property); in FuzzGetProperty() 237 g_executorImpl.GetProperty(templateIdList, propertyTypes, property); in FuzzGetProperty()
|
/drivers/peripheral/fingerprint_auth/test/fuzztest/fingerprint_auth/fingerprintauthallinoneexecutor_fuzzer/ |
H A D | all_in_one_executor_fuzzer.cpp | 127 void FillFuzzProperty(Parcel &parcel, Property &property) in FillFuzzProperty() argument 129 property.authSubType = parcel.ReadUint64(); in FillFuzzProperty() 130 property.lockoutDuration = parcel.ReadInt32(); in FillFuzzProperty() 131 property.remainAttempts = parcel.ReadInt32(); in FillFuzzProperty() 132 FillFuzzString(parcel, property.enrollmentProgress); in FillFuzzProperty() 133 FillFuzzString(parcel, property.sensorInfo); in FillFuzzProperty() 235 Property property; in FuzzGetProperty() local 236 FillFuzzProperty(parcel, property); in FuzzGetProperty() 238 g_executorImpl.GetProperty(templateIdList, propertyTypes, property); in FuzzGetProperty()
|
/drivers/peripheral/pin_auth/test/unittest/pin_auth/service/src/ |
H A D | all_in_one_impl_test.cpp | 89 HdiProperty property; in HWTEST_F() local 90 result = impl->GetProperty(templateIdList, propertyTypes, property); in HWTEST_F() 147 HdiProperty property; in HWTEST_F() local 148 result = impl->GetProperty(templateIdList, propertyTypes, property); in HWTEST_F() 152 result = impl->GetProperty(templateIdList, propertyTypes, property); in HWTEST_F()
|
/drivers/hdf_core/framework/test/unittest/model/audio/src/ |
H A D | audio_dsp_base_test.c | 29 device.property = &node; in DspGetServiceNameTest() 52 device.property = &node; in DspGetDaiNameTest()
|
/drivers/peripheral/usb/gadget/function/usbfn/ |
H A D | dev_usbfn.c | 167 if (iface->GetString(device->property, "udc_name", &devMgr->udcName, UDC_NAME) != HDF_SUCCESS) { in UsbFnDriverInit() 172 if (iface->GetUint8(device->property, "use_hcs", &useHcs, 0) != HDF_SUCCESS) { in UsbFnDriverInit() 178 devMgr->descData.property = device->property; in UsbFnDriverInit()
|
/drivers/hdf_core/framework/model/audio/common/src/ |
H A D | audio_dsp_base.c | 25 node = device->property; in DspGetServiceName() 27 AUDIO_DRIVER_LOG_ERR("device property is NULL."); in DspGetServiceName() 56 node = device->property; in DspGetDaiName()
|
/drivers/hdf_core/framework/test/unittest/platform/common/ |
H A D | adc_driver_test.c | 90 if (device == NULL || device->property == NULL) { in AdcTestBind() 95 ret = AdcTestReadConfig(&g_config, device->property); in AdcTestBind()
|
H A D | clock_driver_test.c | 66 if (device == NULL || device->property == NULL) { in ClockTestBind() 71 ret = ClockTestReadConfig(&g_config, device->property); in ClockTestBind()
|
H A D | dac_driver_test.c | 91 if (device == NULL || device->property == NULL) { in DacTestBind() 96 ret = DacTestReadConfig(&g_config, device->property); in DacTestBind()
|
H A D | i3c_driver_test.c | 90 if (device == NULL || device->property == NULL) { in I3cTestBind() 95 ret = I3cTestReadConfig(&g_config, device->property); in I3cTestBind()
|
H A D | i2c_driver_test.c | 89 if (device == NULL || device->property == NULL) { in I2cTestBind() 94 ret = I2cTestReadConfig(&g_config, device->property); in I2cTestBind()
|
H A D | pcie_bus_driver_test.c | 79 if (device->property == NULL) { in PcieBusTestInit() 80 HDF_LOGW("PcieBusTestInit property is NULL."); in PcieBusTestInit() 84 ret = PcieBusTestReadConfig(device->property); in PcieBusTestInit()
|
H A D | pcie_driver_test.c | 65 if (device == NULL || device->property == NULL) { in PcieTestBind() 78 int32_t ret = PcieTestReadConfig(device->property); in PcieTestInit()
|
H A D | timer_driver_test.c | 83 if (device == NULL || device->property == NULL) {
in TimerTestBind() 88 ret = TimerTestReadConfig(&g_config, device->property);
in TimerTestBind()
|
H A D | watchdog_driver_test.c | 80 if (device == NULL || device->property == NULL) { in WatchdogTestBind() 84 ret = WatchdogTestReadConfig(&g_config, device->property); in WatchdogTestBind()
|
H A D | emmc_test.c | 139 if (device == NULL || device->service == NULL || device->property == NULL) { in EmmcTestInit() 145 ret = EmmcTestFillConfig(tester, device->property); in EmmcTestInit()
|
H A D | gpio_driver_test.c | 126 if (device == NULL || device->property == NULL) { in GpioTestBind() 131 ret = GpioTestReadConfig(&g_config, device->property); in GpioTestBind()
|
H A D | pin_driver_test.c | 92 if (device == NULL || device->property == NULL) { in PinTestBind() 96 ret = PinTestReadConfig(&g_config, device->property); in PinTestBind()
|
/drivers/hdf_core/framework/test/unittest/platform/config/ |
H A D | can_test_config.c | 86 if (device->property == NULL) { in CanTestBind() 87 HDF_LOGI("CanTestBind: property not configed, using default!"); in CanTestBind() 90 ret = CanTestReadConfig(&g_config, device->property); in CanTestBind()
|
/drivers/peripheral/usb/ddk/device/src/ |
H A D | usbfn_sdk_if.c | 112 const struct DeviceResourceNode *property = NULL; in UsbFnCreateDevice() local 125 property = descriptor->property; in UsbFnCreateDevice() 127 des = UsbFnCfgMgrGetInstanceFromHCS(property); in UsbFnCreateDevice() 141 return (struct UsbFnDevice *)UsbFnMgrDeviceCreate(udcName, des, property); in UsbFnCreateDevice()
|