Home
last modified time | relevance | path

Searched refs:property (Results 1 - 25 of 134) sorted by relevance

123456

/drivers/peripheral/camera/test/mpi/src/
H A Ddfx_test.cpp62 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 Dadc_virtual.c114 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 Dclock_virtual.c193 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 Ddac_virtual.c127 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 Dpin_auth_hdi_fuzzer.cpp106 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 Dall_in_one_executor_fuzzer.cpp127 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 Dall_in_one_executor_fuzzer.cpp127 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 Dall_in_one_impl_test.cpp89 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 Daudio_dsp_base_test.c29 device.property = &node; in DspGetServiceNameTest()
52 device.property = &node; in DspGetDaiNameTest()
/drivers/peripheral/usb/gadget/function/usbfn/
H A Ddev_usbfn.c167 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 Daudio_dsp_base.c25 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 Dadc_driver_test.c90 if (device == NULL || device->property == NULL) { in AdcTestBind()
95 ret = AdcTestReadConfig(&g_config, device->property); in AdcTestBind()
H A Dclock_driver_test.c66 if (device == NULL || device->property == NULL) { in ClockTestBind()
71 ret = ClockTestReadConfig(&g_config, device->property); in ClockTestBind()
H A Ddac_driver_test.c91 if (device == NULL || device->property == NULL) { in DacTestBind()
96 ret = DacTestReadConfig(&g_config, device->property); in DacTestBind()
H A Di3c_driver_test.c90 if (device == NULL || device->property == NULL) { in I3cTestBind()
95 ret = I3cTestReadConfig(&g_config, device->property); in I3cTestBind()
H A Di2c_driver_test.c89 if (device == NULL || device->property == NULL) { in I2cTestBind()
94 ret = I2cTestReadConfig(&g_config, device->property); in I2cTestBind()
H A Dpcie_bus_driver_test.c79 if (device->property == NULL) { in PcieBusTestInit()
80 HDF_LOGW("PcieBusTestInit property is NULL."); in PcieBusTestInit()
84 ret = PcieBusTestReadConfig(device->property); in PcieBusTestInit()
H A Dpcie_driver_test.c65 if (device == NULL || device->property == NULL) { in PcieTestBind()
78 int32_t ret = PcieTestReadConfig(device->property); in PcieTestInit()
H A Dtimer_driver_test.c83 if (device == NULL || device->property == NULL) { in TimerTestBind()
88 ret = TimerTestReadConfig(&g_config, device->property); in TimerTestBind()
H A Dwatchdog_driver_test.c80 if (device == NULL || device->property == NULL) { in WatchdogTestBind()
84 ret = WatchdogTestReadConfig(&g_config, device->property); in WatchdogTestBind()
H A Demmc_test.c139 if (device == NULL || device->service == NULL || device->property == NULL) { in EmmcTestInit()
145 ret = EmmcTestFillConfig(tester, device->property); in EmmcTestInit()
H A Dgpio_driver_test.c126 if (device == NULL || device->property == NULL) { in GpioTestBind()
131 ret = GpioTestReadConfig(&g_config, device->property); in GpioTestBind()
H A Dpin_driver_test.c92 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 Dcan_test_config.c86 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 Dusbfn_sdk_if.c112 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()

Completed in 10 milliseconds

123456