Lines Matching refs:pxInterface
239 pxDescriptor->pxInterface = pxNetif; in vNetifReceiveTask()
385 NetworkInterface_t * pxInterface ) in pxLibslirp_FillInterfaceDescriptor() argument
387 configASSERT( pxInterface != NULL ); in pxLibslirp_FillInterfaceDescriptor()
392 memset( pxInterface, 0, sizeof( NetworkInterface_t ) ); in pxLibslirp_FillInterfaceDescriptor()
394 pxInterface->pcName = pcName; /* Just for logging, debugging. */ in pxLibslirp_FillInterfaceDescriptor()
395 … pxInterface->pvArgument = ( void * ) xEMACIndex; /* Has only meaning for the driver functions. */ in pxLibslirp_FillInterfaceDescriptor()
396 pxInterface->pfInitialise = xNetworkInterfaceInitialise; in pxLibslirp_FillInterfaceDescriptor()
397 pxInterface->pfOutput = xNetworkInterfaceOutput; in pxLibslirp_FillInterfaceDescriptor()
398 pxInterface->pfGetPhyLinkStatus = xGetPhyLinkStatus; in pxLibslirp_FillInterfaceDescriptor()
400 FreeRTOS_AddNetworkInterface( pxInterface ); in pxLibslirp_FillInterfaceDescriptor()
402 return pxInterface; in pxLibslirp_FillInterfaceDescriptor()