Home
last modified time | relevance | path

Searched refs:pxFound (Results 1 – 4 of 4) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/tools/tcp_utilities/
Dtcp_mem_stats.c400 TCP_ALLOCATION_t * pxFound = pxRemoveAllocation( pxObject ); in vTCPMemStatDelete() local
407 if( pxFound == NULL ) in vTCPMemStatDelete()
415 pcTypeName( pxFound->xMemType ), in vTCPMemStatDelete()
416 pxFound->uxSize, in vTCPMemStatDelete()
417 uxCurrentMallocSize - pxFound->uxSize, in vTCPMemStatDelete()
418 pxFound->uxNumber, in vTCPMemStatDelete()
422 if( uxCurrentMallocSize < pxFound->uxSize ) in vTCPMemStatDelete()
428 uxCurrentMallocSize -= pxFound->uxSize; in vTCPMemStatDelete()
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_TCP_WIN.c1006 TCPSegment_t * pxFound; in prvTCPWindowRx_ExpectedRX() local
1014 pxFound = xTCPWindowRxConfirm( pxWindow, ulSequenceNumber, ulLength ); in prvTCPWindowRx_ExpectedRX()
1016 if( pxFound != NULL ) in prvTCPWindowRx_ExpectedRX()
1019 vTCPWindowFree( pxFound ); in prvTCPWindowRx_ExpectedRX()
1021 } while( pxFound != NULL ); in prvTCPWindowRx_ExpectedRX()
1027 pxFound = xTCPWindowRxFind( pxWindow, ulCurrentSequenceNumber ); in prvTCPWindowRx_ExpectedRX()
1029 if( pxFound == NULL ) in prvTCPWindowRx_ExpectedRX()
1034 ulCurrentSequenceNumber += ( uint32_t ) pxFound->lDataLength; in prvTCPWindowRx_ExpectedRX()
1038 vTCPWindowFree( pxFound ); in prvTCPWindowRx_ExpectedRX()
1083 const TCPSegment_t * pxFound; in prvTCPWindowRx_UnexpectedRX() local
[all …]
DFreeRTOS_TCP_IP.c697 FreeRTOS_Socket_t * pxFound; in xTCPCheckNewClient() local
713 pxFound = ( ( FreeRTOS_Socket_t * ) listGET_LIST_ITEM_OWNER( pxIterator ) ); in xTCPCheckNewClient()
715 …if( ( pxFound->ucProtocol == ( uint8_t ) FREERTOS_IPPROTO_TCP ) && ( pxFound->u.xTCP.bits.bPassAcc… in xTCPCheckNewClient()
717 pxSocket->u.xTCP.pxPeerSocket = pxFound; in xTCPCheckNewClient()
DFreeRTOS_Routing.c743 NetworkEndPoint_t * pxFound[ rMATCH_COUNT ] = { NULL, NULL, NULL, NULL }; in pxEasyFit() local
786 pxFound[ rMATCH_IP_TYPE ] = pxEndPoint; in pxEasyFit()
803 pxFound[ rMATCH_IP_ADDR ] = pxEndPoint; in pxEasyFit()
808 pxFound[ rMATCH_IPv6_TYPE ] = pxEndPoint; in pxEasyFit()
829 pxFound[ rMATCH_IP_ADDR ] = pxEndPoint; in pxEasyFit()
844 pxFound[ rMATCH_MAC_ADDR ] = pxEndPoint; in pxEasyFit()
853 pxReturn = pxFound[ xIndex ]; in pxEasyFit()