/hal_espressif-2.7.6/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 | 325 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/ |
D | croutine.h | 241 #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 ) ); \
|
D | task.h | 141 …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/ |
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-2.7.6/components/freertos/ |
D | queue.c | 153 QueueHandle_t xHandle; member 712 QueueHandle_t xHandle; in xQueueCreateCountingSemaphoreStatic() local 717 …xHandle = 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 745 …xHandle = 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 …]
|
D | tasks.c | 4135 pxTaskStatus->xHandle = ( TaskHandle_t ) pxTCB; in vTaskGetInfo()
|
/hal_espressif-2.7.6/components/pthread/ |
D | pthread.c | 220 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/ |
D | test_freertos_trace_utilities.c | 112 if(tsk_status_array[j].xHandle == created_handles[i]){
|