Searched refs:TaskHandle_t (Results 1 – 20 of 20) sorted by relevance
| /device/soc/esp/esp32/components/osal/include/esp_osal/ |
| D | task.h | 70 typedef void* TaskHandle_t; typedef 141 …TaskHandle_t xHandle; /* The handle of the task to which the rest of the information in the stru… 291 TaskHandle_t * const pvCreatedTask, 388 TaskHandle_t * const pvCreatedTask) in xTaskCreate() 442 TaskHandle_t xTaskCreateStaticPinnedToCore( TaskFunction_t pvTaskCode, 551 static inline IRAM_ATTR TaskHandle_t xTaskCreateStatic( 630 …BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *p… 713 …ateRestrictedStatic( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask … 758 void vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions ) PRIVILEG… 795 void vTaskDelete( TaskHandle_t xTaskToDelete ) PRIVILEGED_FUNCTION; [all …]
|
| D | stack_macros.h | 73 …vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB[ xPortGetCoreID() ], pxCurrentTCB[ xP… 90 …vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB[ xPortGetCoreID() ], pxCurrentTCB[ xP… 112 …vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB[ xPortGetCoreID() ], pxCurrentTCB[ xP… 137 …vApplicationStackOverflowHook( ( TaskHandle_t ) pxCurrentTCB[ xPortGetCoreID() ], pxCurrentTCB[ xP…
|
| D | queue.h | 1240 TaskHandle_t xQueueGetMutexHolder( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION; 1241 TaskHandle_t xQueueGetMutexHolderFromISR( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION;
|
| D | timers.h | 440 TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ) PRIVILEGED_FUNCTION;
|
| D | esp_osal.h | 961 #define xTaskHandle TaskHandle_t
|
| /device/soc/esp/esp32/components/osal/ |
| D | tasks.c | 57 TaskHandle_t * const pvCreatedTask, in xTaskCreatePinnedToCore() 70 if(pvCreatedTask) *pvCreatedTask = (TaskHandle_t)taskID1; in xTaskCreatePinnedToCore() 114 BaseType_t xTaskGetAffinity( TaskHandle_t xTask ) in xTaskGetAffinity() 119 char *pcTaskGetName( TaskHandle_t xTaskToQuery ) in pcTaskGetName() 124 TaskHandle_t xTaskGetIdleTaskHandleForCPU( UBaseType_t cpuid ) in xTaskGetIdleTaskHandleForCPU() 126 return (TaskHandle_t)g_idleTaskID; in xTaskGetIdleTaskHandleForCPU() 164 void vTaskDelete( TaskHandle_t xTaskToDelete ) in vTaskDelete() 173 TaskHandle_t xTaskGetCurrentTaskHandle( void ) in xTaskGetCurrentTaskHandle() 175 return (TaskHandle_t)LOS_CurTaskIDGet(); in xTaskGetCurrentTaskHandle() 178 TaskHandle_t xTaskGetCurrentTaskHandleForCPU( BaseType_t cpuid ) in xTaskGetCurrentTaskHandleForCPU() [all …]
|
| D | queue.c | 77 TaskHandle_t xMutexHolder; /*< The handle of the task that holds the mutex. */ 259 return (TaskHandle_t)g_losTask.runTask->taskID; in pvTaskIncrementMutexHeldCount() 262 static BaseType_t xTaskPriorityInherit( TaskHandle_t const pxMutexHolder ) in xTaskPriorityInherit() 284 static BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) in xTaskPriorityDisinherit() 298 static void vTaskPriorityDisinheritAfterTimeout( TaskHandle_t const pxMutexHolder, UBaseType_t uxHi… in vTaskPriorityDisinheritAfterTimeout()
|
| /device/soc/esp/esp32/components/esp_common/include/ |
| D | esp_task_wdt.h | 83 esp_err_t esp_task_wdt_add(TaskHandle_t handle); 125 esp_err_t esp_task_wdt_delete(TaskHandle_t handle); 142 esp_err_t esp_task_wdt_status(TaskHandle_t handle);
|
| /device/soc/esp/esp32/components/heap/include/ |
| D | esp_heap_task_info.h | 28 TaskHandle_t task; ///< Task to which these totals belong 35 TaskHandle_t task; ///< Task that allocated the block 70 TaskHandle_t *tasks; ///< Array of tasks whose block info is returned
|
| /device/soc/esp/esp32/components/esp_common/src/ |
| D | task_wdt.c | 64 TaskHandle_t task_handle; 97 static twdt_task_t *find_task_in_twdt_list(TaskHandle_t handle, bool *all_reset) in find_task_in_twdt_list() 268 esp_err_t esp_task_wdt_add(TaskHandle_t handle) in esp_task_wdt_add() 324 TaskHandle_t handle = xTaskGetCurrentTaskHandle(); in esp_task_wdt_reset() 342 esp_err_t esp_task_wdt_delete(TaskHandle_t handle) in esp_task_wdt_delete() 387 esp_err_t esp_task_wdt_status(TaskHandle_t handle) in esp_task_wdt_status()
|
| /device/soc/esp/esp32/components/osal/port/ |
| D | port_common.c | 120 TaskHandle_t idle_0 = xTaskGetIdleTaskHandleForCPU(0); in main_task() 127 TaskHandle_t idle_1 = xTaskGetIdleTaskHandleForCPU(1); in main_task()
|
| /device/soc/esp/esp32/components/esp_event/private_include/ |
| D | esp_event_internal.h | 78 …TaskHandle_t task; /**< task that consumes the event … 79 …TaskHandle_t running_task; /**< for loops with no dedicated t…
|
| /device/soc/esp/esp32/components/heap/ |
| D | heap_task_info.c | 79 TaskHandle_t btask = (TaskHandle_t)multi_heap_get_block_owner(b); in heap_caps_get_per_task_info()
|
| D | multi_heap_platform.h | 82 #define MULTI_HEAP_BLOCK_OWNER TaskHandle_t task;
|
| /device/board/isoftstone/yangfan/common/mqtt/mqttclient_c/src/freertos/ |
| D | MQTTFreeRTOS.h | 59 TaskHandle_t task;
|
| /device/soc/esp/esp32/components/esp_lwip/port/include/arch/ |
| D | sys_arch.h | 49 typedef TaskHandle_t sys_thread_t;
|
| /device/soc/esp/esp32/components/pthread/ |
| D | pthread.c | 47 TaskHandle_t handle; ///< FreeRTOS task handle 48 TaskHandle_t join_task; ///< Handle of the task waiting to join 124 static inline TaskHandle_t pthread_find_handle(pthread_t thread) 129 static esp_pthread_t *pthread_find(TaskHandle_t task_handle) 220 TaskHandle_t xHandle = NULL; 341 TaskHandle_t handle = pthread_find_handle(thread); 400 TaskHandle_t handle = pthread_find_handle(thread); 1285 TaskHandle_t xHandle = NULL; in pthread_create()
|
| D | pthread_local_storage.c | 147 void pthread_local_storage_cleanup(TaskHandle_t task) in pthread_local_storage_cleanup()
|
| /device/soc/esp/esp32/components/osal/port/xtensa/ |
| D | port.c | 392 void __attribute__((weak)) vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName ) in vApplicationStackOverflowHook()
|
| /device/soc/esp/esp32/components/esp_lwip/port/ |
| D | sys_arch.c | 404 TaskHandle_t rtos_task; in sys_thread_new()
|