Home
last modified time | relevance | path

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

/hal_espressif-2.7.6/components/app_trace/sys_view/Sample/OS/
DSEGGER_SYSVIEW_FreeRTOS.c75 U32 xHandle; member
97 if (_aTasks[n].xHandle) { in _cbSendTaskList()
99 … _aTasks[n].uStackHighWaterMark = uxTaskGetStackHighWaterMark((TaskHandle_t)_aTasks[n].xHandle); in _cbSendTaskList()
101 …SYSVIEW_SendTaskInfo((U32)_aTasks[n].xHandle, _aTasks[n].pcTaskName, (unsigned)_aTasks[n].uxCurren… in _cbSendTaskList()
137 void SYSVIEW_AddTask(U32 xHandle, const char* pcTaskName, unsigned uxCurrentPriority, U32 pxStack,… in SYSVIEW_AddTask() argument
145 if (_aTasks[n].xHandle == 0) { in SYSVIEW_AddTask()
154 _aTasks[n].xHandle = xHandle; in SYSVIEW_AddTask()
160 SYSVIEW_SendTaskInfo(xHandle, pcTaskName,uxCurrentPriority, pxStack, uStackHighWaterMark); in SYSVIEW_AddTask()
171 void SYSVIEW_UpdateTask(U32 xHandle, const char* pcTaskName, unsigned uxCurrentPriority, U32 pxStac… in SYSVIEW_UpdateTask() argument
179 if (_aTasks[n].xHandle == xHandle) { in SYSVIEW_UpdateTask()
[all …]
DSEGGER_SYSVIEW_FreeRTOS.h325 void SYSVIEW_AddTask (U32 xHandle, const char* pcTaskName, unsigned uxCurrentPriority, U32 px…
326 void SYSVIEW_UpdateTask (U32 xHandle, const char* pcTaskName, unsigned uxCurrentPriority, U32 pxS…
327 void SYSVIEW_DeleteTask (U32 xHandle);
/hal_espressif-2.7.6/components/freertos/include/freertos/
Dcroutine.h241 #define crSET_STATE0( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = (__LINE__ * 2); return; case… argument
242 #define crSET_STATE1( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = ((__LINE__ * 2)+1); return; … argument
290 #define crDELAY( xHandle, xTicksToDelay ) \ argument
295 crSET_STATE0( ( xHandle ) );
380 #define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \ argument
385 crSET_STATE0( ( xHandle ) ); \
390 crSET_STATE1( ( xHandle ) ); \
472 #define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \ argument
477 crSET_STATE0( ( xHandle ) ); \
482 crSET_STATE1( ( xHandle ) ); \
Dtask.h141 …TaskHandle_t xHandle; /* The handle of the task to which the rest of the information in the stru… member
/hal_espressif-2.7.6/examples/system/freertos/real_time_stats/main/
Dreal_time_stats_example_main.c100 if (start_array[i].xHandle == end_array[j].xHandle) { in print_real_time_stats()
103 start_array[i].xHandle = NULL; in print_real_time_stats()
104 end_array[j].xHandle = NULL; in print_real_time_stats()
118 if (start_array[i].xHandle != NULL) { in print_real_time_stats()
123 if (end_array[i].xHandle != NULL) { in print_real_time_stats()
/hal_espressif-2.7.6/components/freertos/
Dqueue.c153 QueueHandle_t xHandle; member
712 QueueHandle_t xHandle; in xQueueCreateCountingSemaphoreStatic() local
717xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQ… in xQueueCreateCountingSemaphoreStatic()
719 if( xHandle != NULL ) in xQueueCreateCountingSemaphoreStatic()
721 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphoreStatic()
730 return xHandle; in xQueueCreateCountingSemaphoreStatic()
740 QueueHandle_t xHandle; in xQueueCreateCountingSemaphore() local
745xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNT… in xQueueCreateCountingSemaphore()
747 if( xHandle != NULL ) in xQueueCreateCountingSemaphore()
749 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphore()
[all …]
Dtasks.c4135 pxTaskStatus->xHandle = ( TaskHandle_t ) pxTCB; in vTaskGetInfo()
/hal_espressif-2.7.6/components/pthread/
Dpthread.c220 TaskHandle_t xHandle = NULL; in pthread_create() local
297 &xHandle, in pthread_create()
310 pthread->handle = xHandle; in pthread_create()
319 xTaskNotify(xHandle, 0, eNoAction); in pthread_create()
323 ESP_LOGV(TAG, "Created task %x", (uint32_t)xHandle); in pthread_create()
/hal_espressif-2.7.6/components/freertos/test/
Dtest_freertos_trace_utilities.c112 if(tsk_status_array[j].xHandle == created_handles[i]){