Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/freertos/include/freertos/
Dportable.h178 void * pvPortMalloc( size_t xSize ) PRIVILEGED_FUNCTION;
188 #define pvPortMallocStack pvPortMalloc
200 #define pvPortMalloc malloc macro
/hal_espressif-3.6.0/components/freertos/port/riscv/include/freertos/
Dportmacro.h339 #define pvPortMallocTcbMem(size) pvPortMalloc(size)
340 #define pvPortMallocStackMem(size) pvPortMalloc(size)
/hal_espressif-3.6.0/components/freertos/
Dcroutine.c109 pxCoRoutine = ( CRCB_t * ) pvPortMalloc( sizeof( CRCB_t ) ); in xCoRoutineCreate()
Devent_groups.c182 …pxEventBits = ( EventGroup_t * ) pvPortMalloc( sizeof( EventGroup_t ) ); /*lint !e9087 !e9079 see … in xEventGroupCreate()
Dtimers.c302 …pxNewTimer = ( Timer_t * ) pvPortMalloc( sizeof( Timer_t ) ); /*lint !e9087 !e9079 All values retu… in xTimerCreate()
Dstream_buffer.c322 …pucAllocatedMemory = ( uint8_t * ) pvPortMalloc( xBufferSizeBytes + sizeof( StreamBuffer_t ) ); /*… in xStreamBufferGenericCreate()
Dtasks.c5108 …pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); /*lint !e9079… in vTaskList()
5222 …pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) ); /*lint !e9079… in vTaskGetRunTimeStats()
Dqueue.c447 …pxNewQueue = ( Queue_t * ) pvPortMalloc( sizeof( Queue_t ) + xQueueSizeInBytes ); /*lint !e9087 !e… in xQueueGenericCreate()
DHistory.txt490 pvPortMalloc().
700 + Queues are now allocated with a single call to pvPortMalloc() which
1570 just call pvPortMalloc() and vPortFree(). The macros are only needed to
1656 called if pvPortMalloc() returns NULL.
2369 + pvPortMalloc() now takes a size_t parameter as per the ANSI malloc().
2450 cTaskResumeAll() is called from pvPortMalloc(). Thanks to Daniel Braun
/hal_espressif-3.6.0/components/app_trace/test/
Dtest_trace.c192 inth = pvPortMalloc(arg->timers_num * sizeof(timer_isr_handle_t)); in esp_apptrace_dummy_task()
249 inth = pvPortMalloc(arg->timers_num * sizeof(timer_isr_handle_t)); in esp_apptrace_test_task()