Searched refs:pvAllocatedMemory (Results 1 – 2 of 2) sorted by relevance
337 void * pvAllocatedMemory; in xStreamBufferGenericCreate() local385 pvAllocatedMemory = pvPortMalloc( xBufferSizeBytes + sizeof( StreamBuffer_t ) ); in xStreamBufferGenericCreate()389 pvAllocatedMemory = NULL; in xStreamBufferGenericCreate()392 if( pvAllocatedMemory != NULL ) in xStreamBufferGenericCreate()397 …prvInitialiseNewStreamBuffer( ( StreamBuffer_t * ) pvAllocatedMemory, /* S… in xStreamBufferGenericCreate()401 … ( ( uint8_t * ) pvAllocatedMemory ) + sizeof( StreamBuffer_t ), /* Storage area follows. */ in xStreamBufferGenericCreate()408 … traceSTREAM_BUFFER_CREATE( ( ( StreamBuffer_t * ) pvAllocatedMemory ), xStreamBufferType ); in xStreamBufferGenericCreate()415 traceRETURN_xStreamBufferGenericCreate( pvAllocatedMemory ); in xStreamBufferGenericCreate()420 return ( StreamBufferHandle_t ) pvAllocatedMemory; in xStreamBufferGenericCreate()
2409 #define traceRETURN_xStreamBufferGenericCreate( pvAllocatedMemory ) argument