Home
last modified time | relevance | path

Searched refs:measChannelParam (Results 1 – 25 of 30) sorted by relevance

12

/ohos5.0/drivers/peripheral/wlan/hdi_service/service_extend/service_extend_direct/
H A Dwlan_extend_cmd.c27 const struct MeasChannelParam *measChannelParam) in WlanInterfaceStartChannelMeas() argument
32 if (ifName == NULL || measChannelParam == NULL) { in WlanInterfaceStartChannelMeas()
40 ret = g_wifi->startChannelMeas(ifName, (const struct MeasParam *)measChannelParam); in WlanInterfaceStartChannelMeas()
/ohos5.0/drivers/peripheral/wlan/hdi_service/service_extend/service_extend_vdi/
H A Dwlan_extend_cmd.c68 const struct MeasChannelParam *measChannelParam) in WlanInterfaceStartChannelMeas() argument
73 if (ifName == NULL || measChannelParam == NULL) { in WlanInterfaceStartChannelMeas()
81 ret = g_wlanExtendVdiImpl->startChannelMeas(self, ifName, measChannelParam); in WlanInterfaceStartChannelMeas()
H A Dwlan_extend_cmd_vdi.h26 const struct MeasChannelParam *measChannelParam);
/ohos5.0/drivers/peripheral/wlan/test/fuzztest/
H A Dwlan_common_fuzzer.cpp203 struct MeasChannelParam measChannelParam; in FuzzStartChannelMeas() local
204 measChannelParam.channelId = *const_cast<int32_t *>(reinterpret_cast<const int32_t *>(rawData)); in FuzzStartChannelMeas()
205 measChannelParam.measTime = *const_cast<int32_t *>(reinterpret_cast<const int32_t *>(rawData)); in FuzzStartChannelMeas()
207 interface->StartChannelMeas(interface, ifName, &measChannelParam); in FuzzStartChannelMeas()
/ohos5.0/drivers/peripheral/wlan/hdi_service/service_extend/
H A Dwlan_extend_cmd.h23 const struct MeasChannelParam *measChannelParam);
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/wlan/
H A Dinterface_i_wlan_interface_v10.md47 … ifName, [in] struct [MeasChannelParam](_meas_channel_param_v10.md) measChannelParam) | 启动信道测量。 |
680 IWlanInterface::StartChannelMeas ([in] String ifName, [in] struct MeasChannelParam measChannelParam
693 | measChannelParam | 信道测量参数(信道号、测量时间)。 |
H A Dinterface_i_wlan_interface_v11.md45 …ng ifName, [in] struct [MeasChannelParam](_meas_channel_param_v11.md) measChannelParam) | 开始通道测量 |
760 IWlanInterface::StartChannelMeas ([in] String ifName, [in] struct MeasChannelParam measChannelParam
775 | measChannelParam | 表示通道测量参数(通道ID和测量时间) |
/ohos5.0/drivers/peripheral/wlan/test/hdi_service/
H A Dwlan_hdi_hal_services_c_test.cpp813 struct MeasChannelParam measChannelParam; variable
816 measChannelParam.channelId = 1;
817 measChannelParam.measTime = 15;
818 int32_t rc = g_wlanObj->StartChannelMeas(g_wlanObj, ifName, &measChannelParam);
825 rc = g_wlanObj->StartChannelMeas(g_wlanObj, nullptr, &measChannelParam);
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_0/c_target/wlan/v1_0/
H A Dwlan_interface_stub.c.txt1605 struct MeasChannelParam* measChannelParam = NULL;
1615 measChannelParam = (struct MeasChannelParam*)OsalMemCalloc(sizeof(struct MeasChannelParam));
1616 if (measChannelParam == NULL) {
1617 HDF_LOGE("%{public}s: malloc measChannelParam failed", __func__);
1621 if (!MeasChannelParamBlockUnmarshalling(wlanInterfaceData, measChannelParam)) {
1622 HDF_LOGE("%{public}s: read measChannelParam failed!", __func__);
1639 wlanInterfaceRet = serviceImpl->StartChannelMeas(serviceImpl, ifName, measChannelParam);
1650 if (measChannelParam != NULL) {
1651 MeasChannelParamFree(measChannelParam, true);
1652 measChannelParam = NULL;
H A Diwlan_interface.h.txt152 const struct MeasChannelParam* measChannelParam);
H A Dwlan_interface_service.c.txt172 const struct MeasChannelParam* measChannelParam)
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_1/c_target/wlan/v1_1/
H A Dwlan_interface_stub.c.txt1605 struct MeasChannelParam* measChannelParam = NULL;
1615 measChannelParam = (struct MeasChannelParam*)OsalMemCalloc(sizeof(struct MeasChannelParam));
1616 if (measChannelParam == NULL) {
1617 HDF_LOGE("%{public}s: malloc measChannelParam failed", __func__);
1621 if (!MeasChannelParamBlockUnmarshalling(wlanInterfaceData, measChannelParam)) {
1622 HDF_LOGE("%{public}s: read measChannelParam failed!", __func__);
1639 wlanInterfaceRet = serviceImpl->StartChannelMeas(serviceImpl, ifName, measChannelParam);
1650 if (measChannelParam != NULL) {
1651 MeasChannelParamFree(measChannelParam, true);
1652 measChannelParam = NULL;
H A Diwlan_interface.h.txt155 const struct MeasChannelParam* measChannelParam);
H A Dwlan_interface_service.c.txt172 const struct MeasChannelParam* measChannelParam)
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_2/c_target/wlan/v1_2/
H A Dwlan_interface_stub.c.txt1605 struct MeasChannelParam* measChannelParam = NULL;
1615 measChannelParam = (struct MeasChannelParam*)OsalMemCalloc(sizeof(struct MeasChannelParam));
1616 if (measChannelParam == NULL) {
1617 HDF_LOGE("%{public}s: malloc measChannelParam failed", __func__);
1621 if (!MeasChannelParamBlockUnmarshalling(wlanInterfaceData, measChannelParam)) {
1622 HDF_LOGE("%{public}s: read measChannelParam failed!", __func__);
1639 wlanInterfaceRet = serviceImpl->StartChannelMeas(serviceImpl, ifName, measChannelParam);
1650 if (measChannelParam != NULL) {
1651 MeasChannelParamFree(measChannelParam, true);
1652 measChannelParam = NULL;
H A Diwlan_interface.h.txt161 const struct MeasChannelParam* measChannelParam);
H A Dwlan_interface_service.c.txt172 const struct MeasChannelParam* measChannelParam)
/ohos5.0/drivers/peripheral/wlan/test/unittest/hal/
H A Dwifi_hal_test.cpp2056 struct MeasParam measChannelParam; variable
2058 measChannelParam.channelId = 1;
2059 measChannelParam.measTime = 15;
2061 ret = g_wifi->startChannelMeas(nullptr, &measChannelParam);
2065 ret = g_wifi->startChannelMeas(ifName, &measChannelParam);
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_0/dump_ast_target/
H A Ddump.txt107 [in] ohos.hdi.wlan.v1_0.MeasChannelParam measChannelParam);
/ohos5.0/drivers/interface/wlan/v1_0/
H A DIWlanInterface.idl417 …* @param measChannelParam Indicates the channel measurement parameters (channel ID and measurement…
425 [oneway] StartChannelMeas([in] String ifName, [in] struct MeasChannelParam measChannelParam);
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_0/foo/wlan/v1_0/
H A DIWlanInterface.idl417 …* @param measChannelParam Indicates the channel measurement parameters (channel ID and measurement…
425 [oneway] StartChannelMeas([in] String ifName, [in] struct MeasChannelParam measChannelParam);
/ohos5.0/drivers/interface/wlan/v1_1/
H A DIWlanInterface.idl417 …* @param measChannelParam Indicates the channel measurement parameters (channel ID and measurement…
425 [oneway] StartChannelMeas([in] String ifName, [in] struct MeasChannelParam measChannelParam);
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_1/foo/wlan/v1_1/
H A DIWlanInterface.idl417 …* @param measChannelParam Indicates the channel measurement parameters (channel ID and measurement…
425 [oneway] StartChannelMeas([in] String ifName, [in] struct MeasChannelParam measChannelParam);
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_2/foo/wlan/v1_1/
H A DIWlanInterface.idl417 …* @param measChannelParam Indicates the channel measurement parameters (channel ID and measurement…
425 [oneway] StartChannelMeas([in] String ifName, [in] struct MeasChannelParam measChannelParam);
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_v1_1/dump_ast_target/
H A Ddump.txt133 [in] ohos.hdi.wlan.v1_1.MeasChannelParam measChannelParam);

12