Lines Matching refs:pxNetworkBuffer

194 BaseType_t xNetworkInterfaceOutput( NetworkBufferDescriptor_t * const pxNetworkBuffer,  in xNetworkInterfaceOutput()  argument
208 if( ( pxNetworkBuffer->xDataLength <= ( ipconfigNETWORK_MTU + ipSIZE_OF_ETH_HEADER ) ) && in xNetworkInterfaceOutput()
209 ( xSpace >= ( pxNetworkBuffer->xDataLength + sizeof( pxNetworkBuffer->xDataLength ) ) ) ) in xNetworkInterfaceOutput()
213 …ufferAdd( xSendBuffer, 0, ( const uint8_t * ) &( pxNetworkBuffer->xDataLength ), sizeof( pxNetwork… in xNetworkInterfaceOutput()
214 …reamBufferAdd( xSendBuffer, 0, ( const uint8_t * ) pxNetworkBuffer->pucEthernetBuffer, pxNetworkBu… in xNetworkInterfaceOutput()
218 …intf( ( "xNetworkInterfaceOutput: send buffers full to store %lu\n", pxNetworkBuffer->xDataLength … in xNetworkInterfaceOutput()
228 vReleaseNetworkBufferAndDescriptor( pxNetworkBuffer ); in xNetworkInterfaceOutput()
549 NetworkBufferDescriptor_t * pxNetworkBuffer; in prvInterruptSimulatorTask() local
592 pxNetworkBuffer = pxGetNetworkBufferWithDescriptor( pxHeader->len, 0 ); in prvInterruptSimulatorTask()
596 pxNetworkBuffer = NULL; in prvInterruptSimulatorTask()
599 if( pxNetworkBuffer != NULL ) in prvInterruptSimulatorTask()
601 memcpy( pxNetworkBuffer->pucEthernetBuffer, pucPacketData, pxHeader->len ); in prvInterruptSimulatorTask()
602 pxNetworkBuffer->xDataLength = ( size_t ) pxHeader->len; in prvInterruptSimulatorTask()
606pxNetworkBuffer = vRxFaultInjection( pxNetworkBuffer, pucPacketData ); in prvInterruptSimulatorTask()
610 if( pxNetworkBuffer != NULL ) in prvInterruptSimulatorTask()
612 xRxEvent.pvData = ( void * ) pxNetworkBuffer; in prvInterruptSimulatorTask()
625 vReleaseNetworkBufferAndDescriptor( pxNetworkBuffer ); in prvInterruptSimulatorTask()