Home
last modified time | relevance | path

Searched refs:property (Results 1 – 25 of 146) sorted by relevance

123456

/drivers/peripheral/camera/test/mpi/src/
Ddfx_test.cpp62 char property[] = "frame_timeout"; variable
64 result = SetParameter(property, value);
89 char property[] = "hdi_getstreamoperator_timeout"; variable
91 result = SetParameter(property, value);
95 int parameter = GetParameter(property, defValue, value1, 32);
114 char property[] = "hdi_updatesettings_timeout"; variable
116 result = SetParameter(property, value);
120 int parameter = GetParameter(property, defValue, value1, 32);
143 char property[] = "hdi_getenabledresults_timeout"; variable
145 result = SetParameter(property, value);
[all …]
/drivers/hdf_core/framework/test/unittest/platform/virtual/
Dadc_virtual.c114 if (device == NULL || device->property == 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()
165 ret = drsOps->GetUint32(device->property, "devNum", (uint32_t *)&devNum, 0); in VirtualAdcRelease()
173 if (dev != NULL && dev->priv == device->property) { in VirtualAdcRelease()
Ddac_virtual.c127 if (device == NULL || device->property == 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()
181 DEV_RES_NODE_FOR_EACH_CHILD_NODE(device->property, childNode) { in VirtualDacRelease()
/drivers/peripheral/face_auth/test/fuzztest/face_auth/faceauthhdi_fuzzer/
Dface_auth_hdi_fuzzer.cpp140 void FillFuzzProperty(Parcel &parcel, Property &property) in FillFuzzProperty() argument
142 property.authSubType = parcel.ReadUint64(); in FillFuzzProperty()
143 property.lockoutDuration = parcel.ReadInt32(); in FillFuzzProperty()
144 property.remainAttempts = parcel.ReadInt32(); in FillFuzzProperty()
145 FillFuzzString(parcel, property.enrollmentProgress); in FillFuzzProperty()
146 FillFuzzString(parcel, property.sensorInfo); in FillFuzzProperty()
275 Property property; in FuzzGetProperty() local
276 FillFuzzProperty(parcel, property); in FuzzGetProperty()
278 g_executorImpl.GetProperty(templateIdList, propertyTypes, property); in FuzzGetProperty()
/drivers/peripheral/fingerprint_auth/test/fuzztest/fingerprint_auth/fingerprintauthhdi_fuzzer/
Dfingerprint_auth_hdi_fuzzer.cpp140 void FillFuzzProperty(Parcel &parcel, Property &property) in FillFuzzProperty() argument
142 property.authSubType = parcel.ReadUint64(); in FillFuzzProperty()
143 property.lockoutDuration = parcel.ReadInt32(); in FillFuzzProperty()
144 property.remainAttempts = parcel.ReadInt32(); in FillFuzzProperty()
145 FillFuzzString(parcel, property.enrollmentProgress); in FillFuzzProperty()
146 FillFuzzString(parcel, property.sensorInfo); in FillFuzzProperty()
273 Property property; in FuzzGetProperty() local
274 FillFuzzProperty(parcel, property); in FuzzGetProperty()
276 g_executorImpl.GetProperty(templateIdList, propertyTypes, property); in FuzzGetProperty()
/drivers/peripheral/pin_auth/test/uinttest/pin_auth/service/src/
Dexecutor_impl_test.cpp95 Property property; variable
96 result = impl->GetProperty(templateIdList, propertyTypes, property);
148 Property property; variable
149 result = impl->GetProperty(templateIdList, propertyTypes, property);
153 result = impl->GetProperty(templateIdList, propertyTypes, property);
/drivers/peripheral/pin_auth/test/fuzztest/pin_auth/pinauthhdi_fuzzer/
Dpin_auth_hdi_fuzzer.cpp112 void FillFuzzProperty(Parcel &parcel, Property &property) in FillFuzzProperty() argument
114 property.authSubType = parcel.ReadUint64(); in FillFuzzProperty()
115 property.lockoutDuration = parcel.ReadInt32(); in FillFuzzProperty()
116 property.remainAttempts = parcel.ReadInt32(); in FillFuzzProperty()
225 Property property; in FuzzGetProperty() local
226 FillFuzzProperty(parcel, property); in FuzzGetProperty()
228 g_executorImpl.GetProperty(templateIdList, propertyTypes, property); in FuzzGetProperty()
/drivers/hdf_core/framework/test/unittest/model/audio/src/
Daudio_dsp_base_test.c29 device.property = &node; in DspGetServiceNameTest()
52 device.property = &node; in DspGetDaiNameTest()
/drivers/interface/face_auth/v1_1/
DFaceAuthTypes.idl48 /**< Indicates that the property to get is auth sub type. */
50 /**< Indicates that the property to get is lockout duration. */
52 /**< Indicates that the property to get is remain attempts. */
54 /**< Indicates that the property to get is enroll progress. */
56 /**< Indicates that the property to get is sensor info. */
61 * @brief Indicates executor property.
DIExecutor.idl55 * @brief Get property.
58 * @param propertyTypes Indicates the property types to get. See {@link GetPropertyType}.
59 * @param property Indicates property. See {@link Property}.
64 … long[] templateIdList, [in] enum GetPropertyType[] propertyTypes, [out] struct Property property);
/drivers/interface/pin_auth/v1_1/
DPinAuthTypes.idl48 /**< Indicates that the property to get is auth sub type. */
50 /**< Indicates that the property to get is lockout duration. */
52 /**< Indicates that the property to get is remain attempts. */
57 * @brief Indicates executor property.
DIExecutor.idl55 * @brief Get property.
58 * @param propertyTypes Indicates the property types to get. See {@link GetPropertyType}.
59 * @param property Indicates property. See {@link Property}.
67 … long[] templateIdList, [in] enum GetPropertyType[] propertyTypes, [out] struct Property property);
/drivers/hdf_core/framework/model/audio/common/src/
Daudio_dsp_base.c25 node = device->property; in DspGetServiceName()
56 node = device->property; in DspGetDaiName()
/drivers/peripheral/usb/gadget/function/usbfn/
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/test/unittest/platform/common/
Dpcie_driver_test.c65 if (device == NULL || device->property == NULL) { in PcieTestBind()
78 int32_t ret = PcieTestReadConfig(device->property); in PcieTestInit()
Dwatchdog_driver_test.c80 if (device == NULL || device->property == NULL) { in WatchdogTestBind()
84 ret = WatchdogTestReadConfig(&g_config, device->property); in WatchdogTestBind()
Ddac_driver_test.c91 if (device == NULL || device->property == NULL) { in DacTestBind()
96 ret = DacTestReadConfig(&g_config, device->property); in DacTestBind()
Dadc_driver_test.c90 if (device == NULL || device->property == NULL) { in AdcTestBind()
95 ret = AdcTestReadConfig(&g_config, device->property); in AdcTestBind()
Di3c_driver_test.c90 if (device == NULL || device->property == NULL) { in I3cTestBind()
95 ret = I3cTestReadConfig(&g_config, device->property); in I3cTestBind()
Dtimer_driver_test.c83 if (device == NULL || device->property == NULL) { in TimerTestBind()
88 ret = TimerTestReadConfig(&g_config, device->property); in TimerTestBind()
/drivers/interface/fingerprint_auth/v1_1/
DIExecutor.idl70 * @brief Get property.
73 * @param propertyTypes Indicates the property types to get. See {@link GetPropertyType}.
74 * @param property Indicates property. See {@link Property}.
82 … long[] templateIdList, [in] enum GetPropertyType[] propertyTypes, [out] struct Property property);
DFingerprintAuthTypes.idl66 /**< Indicates that the property to get is auth sub type. */
68 /**< Indicates that the property to get is lockout duration. */
70 /**< Indicates that the property to get is remain attempts. */
72 /**< Indicates that the property to get is enroll progress. */
74 /**< Indicates that the property to get is sensor info. */
79 * @brief Indicates executor property.
/drivers/interface/huks/v1_0/
DIHuks.idl77 * @param paramSet Indicates the property set {@link HuksParamSet} of the
78 * key to generate. For details about the key property set struct,
102 * @param paramSet Indicates the property set {@link HuksParamSet} of the
103 * key to import. For details about the key property set struct, see the
129 * @param paramSet Indicates the property set {@link HuksParamSet} of the
130 * key to import. For details about the key property set struct, see the
151 * @param paramSet Indicates the property set {@link HuksParamSet} of the
152 * key to export. For details about the key property set struct, see the
197 * used for the key operation. For details about the key property set
218 * for the key operation. For details about the key property set struct,
[all …]
/drivers/peripheral/usb/ddk/device/src/
Dusbfn_sdk_if.c111 const struct DeviceResourceNode *property = NULL; in UsbFnCreateDevice() local
124 property = descriptor->property; in UsbFnCreateDevice()
126 des = UsbFnCfgMgrGetInstanceFromHCS(property); in UsbFnCreateDevice()
140 return (struct UsbFnDevice *)UsbFnMgrDeviceCreate(udcName, des, property); in UsbFnCreateDevice()
/drivers/hdf_core/framework/test/unittest/platform/config/
Dcan_test_config.c86 if (device->property == NULL) { in CanTestBind()
90 ret = CanTestReadConfig(&g_config, device->property); in CanTestBind()

123456