Home
last modified time | relevance | path

Searched refs:featureType (Results 1 – 25 of 39) sorted by relevance

12

/ohos5.0/drivers/hdf_core/framework/model/network/wifi/core/module/
H A Dwifi_feature.c17 int32_t AddFeature(struct WifiModule *module, uint16_t featureType, struct WifiFeature *feature) in AddFeature() argument
19 if ((module == NULL) || (feature == NULL) || (featureType >= HDF_WIFI_FEATURE_NUM)) { in AddFeature()
23 module->feList.fe[featureType] = (struct WifiFeature *)feature; in AddFeature()
33 int32_t DelFeature(struct WifiModule *module, uint16_t featureType) in DelFeature() argument
36 if ((module == NULL) || (featureType >= HDF_WIFI_FEATURE_NUM)) { in DelFeature()
41 featureData = module->feList.fe[featureType]; in DelFeature()
43 featureData->deInit(module->feList.fe[featureType]); in DelFeature()
H A Dwifi_module.c23 int32_t DelFeature(struct WifiModule *module, uint16_t featureType);
24 int32_t AddFeature(struct WifiModule *module, uint16_t featureType, struct WifiFeature *featureData…
/ohos5.0/drivers/hdf_core/framework/include/wifi/
H A Dwifi_module.h122 …int32_t (*addFeature)(struct WifiModule *module, uint16_t featureType, struct WifiFeature *feature…
135 int32_t (*delFeature)(struct WifiModule *module, uint16_t featureType);
/ohos5.0/base/telephony/call_manager/test/unittest/call_manager_zero_gtest/src/
H A Dzero_branch3_test.cpp719 FeatureType featureType = TYPE_VOICE_OVER_LTE; variable
720 … ASSERT_NE(callControlManager->GetImsFeatureValue(INVALID_CALLID, featureType), TELEPHONY_SUCCESS);
721 ASSERT_NE(callControlManager->GetImsFeatureValue(slotId, featureType), TELEPHONY_SUCCESS);
722 …ASSERT_NE(callControlManager->SetImsFeatureValue(INVALID_CALLID, featureType, mode), TELEPHONY_SUC…
723 ASSERT_NE(callControlManager->SetImsFeatureValue(slotId, featureType, mode), TELEPHONY_SUCCESS);
767 FeatureType featureType = TYPE_VOICE_OVER_LTE; variable
768 … ASSERT_NE(callControlManager->GetImsFeatureValue(INVALID_CALLID, featureType), TELEPHONY_SUCCESS);
769 ASSERT_NE(callControlManager->GetImsFeatureValue(SIM1_SLOTID, featureType), TELEPHONY_SUCCESS);
770 …ASSERT_NE(callControlManager->SetImsFeatureValue(INVALID_CALLID, featureType, mode), TELEPHONY_SUC…
771 …ASSERT_NE(callControlManager->SetImsFeatureValue(SIM1_SLOTID, featureType, mode), TELEPHONY_SUCCES…
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/wlan/
H A Dinterface_i_wlan_interface_v10.md30 … struct [HdfFeatureInfo](_hdf_feature_info_v10.md) ifeature, [out] int featureType) | 获取feature对象的…
236 IWlanInterface::GetFeatureType ([in] struct HdfFeatureInfo ifeature, [out] int featureType )
249 | featureType | feature对象的类型。 |
H A Dinterface_i_wlan_interface_v11.md28 … struct [HdfFeatureInfo](_hdf_feature_info_v11.md) ifeature, [out] int featureType) | 获取Feature对象的…
251 IWlanInterface::GetFeatureType ([in] struct HdfFeatureInfo ifeature, [out] int featureType )
266 | featureType | 表示获取的Feature对象的类型 |
/ohos5.0/drivers/peripheral/wlan/test/fuzztest/
H A Dwlan_common_fuzzer.cpp101 int32_t featureType; in FuzzGetFeatureType() local
106 interface->GetFeatureType(interface, &feature, &featureType); in FuzzGetFeatureType()
/ohos5.0/drivers/peripheral/wlan/hdi_service/service_common/
H A Dwlan_common_cmd.h32 int32_t *featureType);
/ohos5.0/drivers/peripheral/wlan/test/hdi_service/
H A Dwlan_hdi_direct_test.cpp267 int32_t featureType; variable
270 int32_t rc = g_wlanObj->GetFeatureType(g_wlanObj, nullptr, &featureType);
274 rc = g_wlanObj->GetFeatureType(g_wlanObj, &ifeature, &featureType);
H A Dwlan_hdi_hal_services_c_test.cpp167 int32_t featureType; variable
171 rc = g_wlanObj->GetFeatureType(g_wlanObj, &ifeature, &featureType);
1041 int32_t featureType; variable
1045 rc = g_wlanObj->GetFeatureType(g_wlanObj, &ifeature, &featureType);
/ohos5.0/foundation/multimedia/camera_framework/interfaces/kits/js/camera_napi/
H A D@ohos.multimedia.camera.d.ts4461 readonly featureType: SceneFeatureType;
4662 …on(type: 'featureDetection', featureType: SceneFeatureType, callback: AsyncCallback<SceneFeatureDe…
4675 …off(type: 'featureDetection', featureType: SceneFeatureType, callback?: AsyncCallback<SceneFeature…
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/session/
H A Dcamera_session_napi.cpp4429 int32_t featureType = SceneFeature::FEATURE_ENUM_MAX; in RegisterFeatureDetectionStatusListener() local
4430 CameraNapiParamParser jsParamParser(env, args, featureType); in RegisterFeatureDetectionStatusListener()
4435 …if (featureType < SceneFeature::FEATURE_ENUM_MIN || featureType >= SceneFeature::FEATURE_ENUM_MAX)… in RegisterFeatureDetectionStatusListener()
4446 if (featureType == SceneFeature::FEATURE_LOW_LIGHT_BOOST) { in RegisterFeatureDetectionStatusListener()
4451 if (featureType == SceneFeature::FEATURE_TRIPOD_DETECTION) { in RegisterFeatureDetectionStatusListener()
4470 int32_t featureType = SceneFeature::FEATURE_ENUM_MAX; in UnregisterFeatureDetectionStatusListener() local
4471 CameraNapiParamParser jsParamParser(env, args, featureType); in UnregisterFeatureDetectionStatusListener()
4476 …if (featureType < SceneFeature::FEATURE_ENUM_MIN || featureType >= SceneFeature::FEATURE_ENUM_MAX)… in UnregisterFeatureDetectionStatusListener()
4482 …featureDetectionStatusCallback_->RemoveCallbackRef(eventName + std::to_string(featureType), callba… in UnregisterFeatureDetectionStatusListener()
4484 if (featureType == SceneFeature::FEATURE_LOW_LIGHT_BOOST && in UnregisterFeatureDetectionStatusListener()
[all …]
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_0/c_target/wlan/v1_0/
H A Diwlan_interface.h.txt110 …ureType)(struct IWlanInterface *self, const struct HdfFeatureInfo* ifeature, int32_t* featureType);
H A Dwlan_interface_service.c.txt73 int32_t* featureType)
/ohos5.0/docs/zh-cn/application-dev/reference/apis-camera-kit/
H A Djs-apis-camera-sys.md2567 | featureType | [SceneFeatureType](#scenefeaturetype12) | 是 | 是 | 特性类型。 |
2620 function isSceneFeatureSupported(photoSession: camera.PhotoSession, featureType: camera.SceneFeatur…
2621 let isSupported: boolean = photoSession.isSceneFeatureSupported(featureType);
2670 …`on featureDetectionStatus featureType:${statusObject.featureType} detected:${statusObject.detecte…
2671 if (statusObject.featureType === camera.SceneFeatureType.MOON_CAPTURE_BOOST) {
2673 photoSession.enableSceneFeature(statusObject.featureType, statusObject.detected);
3686 | featureType | [SceneFeatureType](#scenefeaturetype12) | 是 | 监听指定特性。 |
3707 console.info(`feature type: ${result.featureType}`);
3712 photoSession.on('featureDetection', featureType, callback);
3731 | featureType | [SceneFeatureType](#scenefeaturetype12) | 是 | 指定特性。 |
[all …]
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_1/c_target/wlan/v1_1/
H A Diwlan_interface.h.txt113 …ureType)(struct IWlanInterface *self, const struct HdfFeatureInfo* ifeature, int32_t* featureType);
H A Dwlan_interface_service.c.txt73 int32_t* featureType)
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_0/dump_ast_target/
H A Ddump.txt39 [out] int featureType);
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_2/c_target/wlan/v1_2/
H A Diwlan_interface.h.txt119 …ureType)(struct IWlanInterface *self, const struct HdfFeatureInfo* ifeature, int32_t* featureType);
H A Dwlan_interface_service.c.txt73 int32_t* featureType)
/ohos5.0/drivers/interface/wlan/v1_0/
H A DIWlanInterface.idl171 * @param featureType Indicates the type of the <b>Feature</b> object obtained.
179 GetFeatureType([in] struct HdfFeatureInfo ifeature, [out] int featureType);
/ohos5.0/docs/zh-cn/device-dev/driver/
H A Ddriver-peripherals-external-des.md123 …| int32_t&nbsp;DelFeature(struct&nbsp;WifiModule&nbsp;\*module,&nbsp;uint16_t&nbsp;featureType) | …
124 …| int32_t&nbsp;AddFeature(struct&nbsp;WifiModule&nbsp;\*module,&nbsp;uint16_t&nbsp;featureType,<br…
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_0/foo/wlan/v1_0/
H A DIWlanInterface.idl171 * @param featureType Indicates the type of the <b>Feature</b> object obtained.
179 GetFeatureType([in] struct HdfFeatureInfo ifeature, [out] int featureType);
/ohos5.0/drivers/interface/wlan/v1_1/
H A DIWlanInterface.idl171 * @param featureType Indicates the type of the <b>Feature</b> object obtained.
179 GetFeatureType([in] struct HdfFeatureInfo ifeature, [out] int featureType);
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_1/foo/wlan/v1_1/
H A DIWlanInterface.idl171 * @param featureType Indicates the type of the <b>Feature</b> object obtained.
179 GetFeatureType([in] struct HdfFeatureInfo ifeature, [out] int featureType);

12