Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/freertos/
Devent_groups.c84 …uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the event group is statically allocated to ens… member
140 pxEventBits->ucStaticallyAllocated = pdTRUE; in xEventGroupCreateStatic()
194 pxEventBits->ucStaticallyAllocated = pdFALSE; in xEventGroupCreate()
717 if( pxEventBits->ucStaticallyAllocated == ( uint8_t ) pdFALSE ) in vEventGroupDelete()
Dtasks.c349 …uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the task is a statically a… member
703 pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; in xTaskCreateStaticPinnedToCore()
746 pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; in xTaskCreateRestrictedStatic()
796 pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_ONLY; in xTaskCreateRestricted()
895 pxNewTCB->ucStaticallyAllocated = tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB; in xTaskCreatePinnedToCore()
4564 if( pxTCB->ucStaticallyAllocated == tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ) in prvDeleteTCB()
4571 else if( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_ONLY ) in prvDeleteTCB()
4581 … configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB ); in prvDeleteTCB()
Dqueue.c132 …uint8_t ucStaticallyAllocated; /*< Set to pdTRUE if the memory used by the queue was statically al… member
389 pxNewQueue->ucStaticallyAllocated = pdTRUE; in xQueueGenericCreateStatic()
461 pxNewQueue->ucStaticallyAllocated = pdFALSE; in xQueueGenericCreate()
2159 if( pxQueue->ucStaticallyAllocated == ( uint8_t ) pdFALSE ) in vQueueDelete()