Home
last modified time | relevance | path

Searched refs:staSize (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 …real_GetDhcpClientInfos(const char *ifname, int staNumber, DhcpStationInfo *staInfo, int *staSize);
113 …_wrap_GetDhcpClientInfos(const char *ifname, int staNumber, DhcpStationInfo *staInfo, int *staSize) in __wrap_GetDhcpClientInfos() argument
116 return MockDhcpService::GetInstance().GetDhcpClientInfos(ifname, staNumber, staInfo, staSize); in __wrap_GetDhcpClientInfos()
H A Dmock_dhcp_service.h36 …ntInfos, DhcpErrorCode(const char *ifname, int staNumber, DhcpStationInfo *staInfo, int *staSize));
/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
262 *staSize = i; in ParseClientInfos()
263 DHCP_LOGI("GetDhcpClientInfos staNumber:%{public}d staSize:%{public}d", staNumber, *staSize); in ParseClientInfos()
267 …rCode GetDhcpClientInfos(const char *ifname, int staNumber, DhcpStationInfo *staInfo, int *staSize) in GetDhcpClientInfos() argument
274 CHECK_PTR_RETURN(staSize, DHCP_INVALID_PARAM); in GetDhcpClientInfos()
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.cpp115 int staSize = 0; in GetConnectedStationInfo() local
121 GetConnectedStaInfo(ifaceName, staNumber, staInfos, &staSize); in GetConnectedStationInfo()
122 for (int i = 0; i < staSize; i++) { in GetConnectedStationInfo()
335 int *staSize) in GetConnectedStaInfo() argument
337 if (staInfos == nullptr || staSize == nullptr) { in GetConnectedStaInfo()
344 int result = GetDhcpClientInfos(ifaceName.c_str(), staNumber, staInfos, staSize); in GetConnectedStaInfo()
H A Ddhcpd_interface.h93 …ectedStaInfo(const std::string &ifaceName, int staNumber, DhcpStationInfo *staInfos, int *staSize);
/ohos5.0/foundation/communication/dhcp/interfaces/kits/c/
H A Ddhcp_c_api.h75 …Code GetDhcpClientInfos(const char *ifname, int staNumber, DhcpStationInfo *staInfo, int *staSize);