Home
last modified time | relevance | path

Searched refs:netDeviceIf (Results 1 – 7 of 7) sorted by relevance

/drivers/hdf_core/framework/model/network/wifi/core/components/eapol/
Deapol.c104 if ((netDevice->netDeviceIf == NULL) || (netDevice->netDeviceIf->xmit == NULL)) { in SendEapol()
125 return netDevice->netDeviceIf->xmit(netDevice, netBuff); in SendEapol()
/drivers/hdf_core/framework/model/network/common/netdevice/
Dnet_device.c349 if (netDevice->netDeviceIf != NULL && netDevice->netDeviceIf->specialEtherTypeProcess != NULL) { in NetIfRxImpl()
350 ret = netDevice->netDeviceIf->specialEtherTypeProcess(netDevice, buff); in NetIfRxImpl()
377 if (netDevice->netDeviceIf != NULL && netDevice->netDeviceIf->setMacAddr != NULL) { in NetIfSetMacAddr()
378 ret = netDevice->netDeviceIf->setMacAddr(netDevice, (void*)macAddr); in NetIfSetMacAddr()
/drivers/hdf_core/adapter/khdf/liteos_m/network/src/
Dnet_device_adapter.c133 netDevIf = netDev->netDeviceIf; in LwipSend()
161 netDevIf = netDev->netDeviceIf; in LwipSetHwaddr()
243 if (netDeviceImpl->netDevice != NULL && netDeviceImpl->netDevice->netDeviceIf != NULL && in LiteNetifLinkChangeCallback()
244 netDeviceImpl->netDevice->netDeviceIf->linkStatusChanged != NULL) { in LiteNetifLinkChangeCallback()
245 netDeviceImpl->netDevice->netDeviceIf->linkStatusChanged(netDeviceImpl->netDevice); in LiteNetifLinkChangeCallback()
/drivers/hdf_core/adapter/khdf/liteos/network/src/
Dnet_device_adapter.c156 netDevIf = netDev->netDeviceIf; in LwipSend()
184 netDevIf = netDev->netDeviceIf; in LwipSetHwaddr()
265 if (netDeviceImpl->netDevice != NULL && netDeviceImpl->netDevice->netDeviceIf != NULL && in LiteNetifLinkChangeCallback()
266 netDeviceImpl->netDevice->netDeviceIf->linkStatusChanged != NULL) { in LiteNetifLinkChangeCallback()
267 netDeviceImpl->netDevice->netDeviceIf->linkStatusChanged(netDeviceImpl->netDevice); in LiteNetifLinkChangeCallback()
/drivers/hdf_core/framework/include/net/
Dnet_device.h485 struct NetDeviceInterFace *netDeviceIf; /**< Network device interface */ member
947 #define GET_NET_DEV_IF(dev) ((dev)->netDeviceIf)
/drivers/hdf_core/adapter/khdf/linux/network/src/
Dnet_device_adapter.c64 netDevIf = netDev->netDeviceIf; in NetDevXmit()
89 netDevIf = netDev->netDeviceIf; in NetDevGetStats()
/drivers/hdf_core/framework/model/network/wifi/core/module/
Dwifi_base.c675 ret = netdev->netDeviceIf->open(netdev); in SetNetIfInfo()
689 (void)netdev->netDeviceIf->stop(netdev); in UnsetNetIfInfo()
755 if (netdev == NULL || netdev->netDeviceIf == NULL) { in WifiCmdSetNetdev()
760 …if (info->status == FALSE && NetDeviceIsInstRunning(netdev) && netdev->netDeviceIf->stop != NULL) { in WifiCmdSetNetdev()
763 …} else if (info->status == TRUE && !NetDeviceIsInstRunning(netdev) && netdev->netDeviceIf->open !=… in WifiCmdSetNetdev()
858 if (netdev == NULL || netdev->netDeviceIf == NULL) { in WifiCmdSendAction()