Searched refs:pvAllocatedMemory (Results 1 – 2 of 2) sorted by relevance
325 void * pvAllocatedMemory; in xStreamBufferGenericCreate() local367 pvAllocatedMemory = pvPortMalloc( xBufferSizeBytes + sizeof( StreamBuffer_t ) ); in xStreamBufferGenericCreate()371 pvAllocatedMemory = NULL; in xStreamBufferGenericCreate()374 if( pvAllocatedMemory != NULL ) in xStreamBufferGenericCreate()379 …prvInitialiseNewStreamBuffer( ( StreamBuffer_t * ) pvAllocatedMemory, /* S… in xStreamBufferGenericCreate()383 … ( ( uint8_t * ) pvAllocatedMemory ) + sizeof( StreamBuffer_t ), /* Storage area follows. */ in xStreamBufferGenericCreate()390 … traceSTREAM_BUFFER_CREATE( ( ( StreamBuffer_t * ) pvAllocatedMemory ), xIsMessageBuffer ); in xStreamBufferGenericCreate()397 traceRETURN_xStreamBufferGenericCreate( pvAllocatedMemory ); in xStreamBufferGenericCreate()402 return ( StreamBufferHandle_t ) pvAllocatedMemory; in xStreamBufferGenericCreate()
2357 #define traceRETURN_xStreamBufferGenericCreate( pvAllocatedMemory ) argument