Lines Matching refs:num
66 int32_t band, int32_t *freqs, uint32_t size, uint32_t *num)
68 if (baseFeature == NULL || freqs == NULL || size < MAX_CHANNEL_NUM || num == NULL || band < 0) {
72 return HalCmdGetValidFreqWithBand(baseFeature->ifName, band, freqs, size, num);
93 static int32_t GetIfNamesByChipIdInner(const uint8_t chipId, char **ifNames, uint32_t *num)
95 if (ifNames == NULL || num == NULL) {
99 return HalCmdGetIfNamesByChipId(chipId, ifNames, num);
135 int32_t band, int32_t *freqs, uint32_t size, uint32_t *num)
138 int32_t ret = GetValidFreqsWithBandInner(baseFeature, band, freqs, size, num);
159 static int32_t HalGetIfNamesByChipId(const uint8_t chipId, char **ifNames, uint32_t *num)
162 int32_t ret = GetIfNamesByChipIdInner(chipId, ifNames, num);