Lines Matching refs:pxObject
75 void * pxObject; member
96 void * pxObject, in vAddAllocation() argument
105 if( xAllocations[ uxIndex ].pxObject == pxObject ) in vAddAllocation()
108 FreeRTOS_printf( ( "vAddAllocation: Pointer %p already added\n", pxObject ) ); in vAddAllocation()
119 xAllocations[ uxIndex ].pxObject = pxObject; in vAddAllocation()
129 static TCP_ALLOCATION_t * pxRemoveAllocation( void * pxObject ) in pxRemoveAllocation() argument
140 if( xAllocations[ uxSource ].pxObject == pxObject ) in pxRemoveAllocation()
354 void * pxObject, in vTCPMemStatCreate() argument
391 vAddAllocation( xMemType, pxObject, uxSize ); in vTCPMemStatCreate()
396 void vTCPMemStatDelete( void * pxObject ) in vTCPMemStatDelete() argument
400 TCP_ALLOCATION_t * pxFound = pxRemoveAllocation( pxObject ); in vTCPMemStatDelete()
409 FreeRTOS_printf( ( "TCPMemStat: can not find pointer %p\n", pxObject ) ); in vTCPMemStatDelete()