Lines Matching refs:ifName
657 int32_t WifiChip::CreateExtService(const std::string& ifName, sptr<IChipIface>& iface)
660 WifiError status = vendorHal_.lock()->CreateVirtualInterface(ifName, HalIfaceType::HAL_TYPE_P2P);
662 HDF_LOGE("Failed to add interface: %{public}s, error: %{public}d", ifName.c_str(), status);
665 sptr<WifiExtIface> ifa = new WifiExtIface(ifName, vendorHal_, ifaceUtil_);
671 int32_t WifiChip::GetExtService(const std::string& ifName, sptr<IChipIface>& iface)
673 iface = FindExtUsingName(extIfaces_, ifName);
680 int32_t WifiChip::RemoveExtService(const std::string& ifName)
682 const auto iface = FindExtUsingName(extIfaces_, ifName);
686 WifiError status = vendorHal_.lock()->DeleteVirtualInterface(ifName);
688 HDF_LOGE("Failed to remove interface: %{public}s, error: %{public}d", ifName.c_str(), status);