Lines Matching refs:pxObject
82 void * pxObject; member
103 void * pxObject, in vAddAllocation() argument
112 if( xAllocations[ uxIndex ].pxObject == pxObject ) in vAddAllocation()
115 FreeRTOS_printf( ( "vAddAllocation: Pointer %p already added\n", pxObject ) ); in vAddAllocation()
125 xAllocations[ uxIndex ].pxObject = pxObject; in vAddAllocation()
136 static TCP_ALLOCATION_t * pxRemoveAllocation( void * pxObject ) in pxRemoveAllocation() argument
147 if( xAllocations[ uxSource ].pxObject == pxObject ) in pxRemoveAllocation()
361 void * pxObject, in vTCPMemStatCreate() argument
398 vAddAllocation( xMemType, pxObject, uxSize ); in vTCPMemStatCreate()
403 void vTCPMemStatDelete( void * pxObject ) in vTCPMemStatDelete() argument
407 TCP_ALLOCATION_t * pxFound = pxRemoveAllocation( pxObject ); in vTCPMemStatDelete()
416 FreeRTOS_printf( ( "TCPMemStat: can not find pointer %p\n", pxObject ) ); in vTCPMemStatDelete()