/hal_espressif-3.4.0/components/app_trace/sys_view/Sample/OS/ |
D | SEGGER_SYSVIEW_FreeRTOS.c | 75 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 …]
|
D | SEGGER_SYSVIEW_FreeRTOS.h | 323 void SYSVIEW_AddTask (U32 xHandle, const char* pcTaskName, unsigned uxCurrentPriority, U32 px… 324 void SYSVIEW_UpdateTask (U32 xHandle, const char* pcTaskName, unsigned uxCurrentPriority, U32 pxS… 325 void SYSVIEW_DeleteTask (U32 xHandle);
|
/hal_espressif-3.4.0/components/freertos/include/freertos/ |
D | croutine.h | 269 #define crSET_STATE0( xHandle ) \ argument 270 ( ( CRCB_t * ) ( xHandle ) )->uxState = ( __LINE__ * 2 ); return; \ 272 #define crSET_STATE1( xHandle ) \ argument 273 ( ( CRCB_t * ) ( xHandle ) )->uxState = ( ( __LINE__ * 2 ) + 1 ); return; \ 328 #define crDELAY( xHandle, xTicksToDelay ) \ argument 333 crSET_STATE0( ( xHandle ) ); 424 #define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \ argument 429 crSET_STATE0( ( xHandle ) ); \ 434 crSET_STATE1( ( xHandle ) ); \ 522 #define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \ argument [all …]
|
D | task.h | 158 …TaskHandle_t xHandle; /* The handle of the task to which the rest of th… member
|
/hal_espressif-3.4.0/examples/system/freertos/real_time_stats/main/ |
D | real_time_stats_example_main.c | 100 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-3.4.0/components/freertos/ |
D | queue.c | 166 QueueHandle_t xHandle; member 758 QueueHandle_t xHandle = NULL; in xQueueCreateCountingSemaphoreStatic() local 763 …xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQ… in xQueueCreateCountingSemaphoreStatic() 765 if( xHandle != NULL ) in xQueueCreateCountingSemaphoreStatic() 767 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphoreStatic() 776 return xHandle; in xQueueCreateCountingSemaphoreStatic() 787 QueueHandle_t xHandle = NULL; in xQueueCreateCountingSemaphore() local 792 …xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNT… in xQueueCreateCountingSemaphore() 794 if( xHandle != NULL ) in xQueueCreateCountingSemaphore() 796 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphore() [all …]
|
D | tasks.c | 4283 pxTaskStatus->xHandle = ( TaskHandle_t ) pxTCB; in vTaskGetInfo()
|
/hal_espressif-3.4.0/components/pthread/ |
D | pthread.c | 206 TaskHandle_t xHandle = NULL; in pthread_create() local 283 &xHandle, in pthread_create() 296 pthread->handle = xHandle; in pthread_create() 305 xTaskNotify(xHandle, 0, eNoAction); in pthread_create() 309 ESP_LOGV(TAG, "Created task %x", (uint32_t)xHandle); in pthread_create()
|
/hal_espressif-3.4.0/components/freertos/test/ |
D | test_freertos_trace_utilities.c | 112 if(tsk_status_array[j].xHandle == created_handles[i]){
|