Lines Matching defs:apFeature
29 static int32_t GetAssociatedStasInner(const struct IWiFiAp *apFeature,
32 if (apFeature == NULL || staInfo == NULL || size == 0 || num == NULL) {
36 return HalCmdGetAssociatedStas(apFeature->baseFeature.ifName, staInfo, size, num);
39 static int32_t SetCountryCodeInner(const struct IWiFiAp *apFeature, const char *code, uint32_t len)
41 if (apFeature == NULL || code == NULL || len != strlen(code)) {
45 return HalCmdSetCountryCode(apFeature->baseFeature.ifName, code, len);
48 static int32_t HalGetAssociatedStas(const struct IWiFiAp *apFeature,
52 int32_t ret = GetAssociatedStasInner(apFeature, staInfo, count, num);
57 static int32_t HalSetCountryCode(const struct IWiFiAp *apFeature, const char *code, uint32_t len)
60 int32_t ret = SetCountryCodeInner(apFeature, code, len);