Home
last modified time | relevance | path

Searched refs:staNumber (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_sta/Mock/
H A Dmock_dhcp_service.cpp112 DhcpErrorCode __real_GetDhcpClientInfos(const char *ifname, int staNumber, DhcpStationInfo *staInfo…
113 DhcpErrorCode __wrap_GetDhcpClientInfos(const char *ifname, int staNumber, DhcpStationInfo *staInfo… in __wrap_GetDhcpClientInfos() argument
116 return MockDhcpService::GetInstance().GetDhcpClientInfos(ifname, staNumber, staInfo, staSize); in __wrap_GetDhcpClientInfos()
H A Dmock_dhcp_service.h36 …MOCK_METHOD4(GetDhcpClientInfos, DhcpErrorCode(const char *ifname, int staNumber, DhcpStationInfo …
/ohos5.0/foundation/communication/dhcp/frameworks/native/c_adapter/src/
H A Ddhcp_c_service.cpp222 DhcpErrorCode ParseClientInfos(int staNumber, DhcpStationInfo *staInfo, int *staSize, std::vector<s… in ParseClientInfos() argument
225 DHCP_LOGI("ParseClientInfos staNumber:%{public}d size:%{public}d", staNumber, size); in ParseClientInfos()
246 if (i >= staNumber) { in ParseClientInfos()
263 DHCP_LOGI("GetDhcpClientInfos staNumber:%{public}d staSize:%{public}d", staNumber, *staSize); in ParseClientInfos()
267 DhcpErrorCode GetDhcpClientInfos(const char *ifname, int staNumber, DhcpStationInfo *staInfo, int *… in GetDhcpClientInfos() argument
282 return ParseClientInfos(staNumber, staInfo, staSize, vecInfo); in GetDhcpClientInfos()
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/net_helper/
H A Ddhcpd_interface.cpp114 int staNumber = MAX_STA_NUMBER; in GetConnectedStationInfo() local
116 staInfos = (struct DhcpStationInfo*)malloc(sizeof(DhcpStationInfo) * staNumber); in GetConnectedStationInfo()
121 GetConnectedStaInfo(ifaceName, staNumber, staInfos, &staSize); in GetConnectedStationInfo()
334 bool DhcpdInterface::GetConnectedStaInfo(const std::string &ifaceName, int staNumber, DhcpStationIn… in GetConnectedStaInfo() argument
344 int result = GetDhcpClientInfos(ifaceName.c_str(), staNumber, staInfos, staSize); in GetConnectedStaInfo()
H A Ddhcpd_interface.h93 …bool GetConnectedStaInfo(const std::string &ifaceName, int staNumber, DhcpStationInfo *staInfos, i…
/ohos5.0/foundation/communication/dhcp/interfaces/kits/c/
H A Ddhcp_c_api.h75 …DhcpErrorCode GetDhcpClientInfos(const char *ifname, int staNumber, DhcpStationInfo *staInfo, int …