Searched refs:staNumber (Results 1 - 6 of 6) sorted by relevance
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_sta/Mock/ |
H A D | mock_dhcp_service.cpp | 112 DhcpErrorCode __real_GetDhcpClientInfos(const char *ifname, int staNumber, DhcpStationInfo *staInfo, int *staSize); 113 DhcpErrorCode __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 D | mock_dhcp_service.h | 36 MOCK_METHOD4(GetDhcpClientInfos, DhcpErrorCode(const char *ifname, int staNumber, DhcpStationInfo *staInfo, int *staSize));
|
/foundation/communication/dhcp/frameworks/native/c_adapter/src/ |
H A D | dhcp_c_service.cpp | 222 DhcpErrorCode ParseClientInfos(int staNumber, DhcpStationInfo *staInfo, int *staSize, std::vector<std::string> &vecInfo) 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 *staSize) in GetDhcpClientInfos() argument 282 return ParseClientInfos(staNumber, staInfo, staSize, vecInfo); in GetDhcpClientInfos()
|
/foundation/communication/dhcp/interfaces/kits/c/ |
H A D | dhcp_c_api.h | 75 DhcpErrorCode GetDhcpClientInfos(const char *ifname, int staNumber, DhcpStationInfo *staInfo, int *staSize);
|
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_toolkit/net_helper/ |
H A D | dhcpd_interface.cpp | 114 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, DhcpStationInfo *staInfos, in GetConnectedStaInfo() argument 344 int result = GetDhcpClientInfos(ifaceName.c_str(), staNumber, staInfos, staSize); in GetConnectedStaInfo()
|
H A D | dhcpd_interface.h | 93 bool GetConnectedStaInfo(const std::string &ifaceName, int staNumber, DhcpStationInfo *staInfos, int *staSize);
|
Completed in 3 milliseconds