Home
last modified time | relevance | path

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

/Kernel-v10.6.2/
HDstream_buffer.c327 void * pvAllocatedMemory; in xStreamBufferGenericCreate() local
367 pvAllocatedMemory = pvPortMalloc( xBufferSizeBytes + sizeof( StreamBuffer_t ) ); in xStreamBufferGenericCreate()
371 pvAllocatedMemory = NULL; in xStreamBufferGenericCreate()
374 if( pvAllocatedMemory != NULL ) in xStreamBufferGenericCreate()
376 …prvInitialiseNewStreamBuffer( ( StreamBuffer_t * ) pvAllocatedMemory, /* S… in xStreamBufferGenericCreate()
377 …( ( uint8_t * ) pvAllocatedMemory ) + sizeof( StreamBuffer_t ), /* Storage area follows. */ /*lint… in xStreamBufferGenericCreate()
384 … traceSTREAM_BUFFER_CREATE( ( ( StreamBuffer_t * ) pvAllocatedMemory ), xIsMessageBuffer ); in xStreamBufferGenericCreate()
391 …return ( StreamBufferHandle_t ) pvAllocatedMemory; /*lint !e9087 !e826 Safe cast as allocated memo… in xStreamBufferGenericCreate()