Home
last modified time | relevance | path

Searched refs:TaskHandle_t (Results 1 – 20 of 20) sorted by relevance

/device/soc/esp/esp32/components/osal/include/esp_osal/
Dtask.h70 typedef void* TaskHandle_t; typedef
141TaskHandle_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 …]
Dstack_macros.h73 …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…
Dqueue.h1240 TaskHandle_t xQueueGetMutexHolder( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION;
1241 TaskHandle_t xQueueGetMutexHolderFromISR( QueueHandle_t xSemaphore ) PRIVILEGED_FUNCTION;
Dtimers.h440 TaskHandle_t xTimerGetTimerDaemonTaskHandle( void ) PRIVILEGED_FUNCTION;
Desp_osal.h961 #define xTaskHandle TaskHandle_t
/device/soc/esp/esp32/components/osal/
Dtasks.c57 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 …]
Dqueue.c77 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/
Desp_task_wdt.h83 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/
Desp_heap_task_info.h28 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/
Dtask_wdt.c64 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/
Dport_common.c120 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/
Desp_event_internal.h78TaskHandle_t task; /**< task that consumes the event …
79TaskHandle_t running_task; /**< for loops with no dedicated t…
/device/soc/esp/esp32/components/heap/
Dheap_task_info.c79 TaskHandle_t btask = (TaskHandle_t)multi_heap_get_block_owner(b); in heap_caps_get_per_task_info()
Dmulti_heap_platform.h82 #define MULTI_HEAP_BLOCK_OWNER TaskHandle_t task;
/device/board/isoftstone/yangfan/common/mqtt/mqttclient_c/src/freertos/
DMQTTFreeRTOS.h59 TaskHandle_t task;
/device/soc/esp/esp32/components/esp_lwip/port/include/arch/
Dsys_arch.h49 typedef TaskHandle_t sys_thread_t;
/device/soc/esp/esp32/components/pthread/
Dpthread.c47 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()
Dpthread_local_storage.c147 void pthread_local_storage_cleanup(TaskHandle_t task) in pthread_local_storage_cleanup()
/device/soc/esp/esp32/components/osal/port/xtensa/
Dport.c392 void __attribute__((weak)) vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName ) in vApplicationStackOverflowHook()
/device/soc/esp/esp32/components/esp_lwip/port/
Dsys_arch.c404 TaskHandle_t rtos_task; in sys_thread_new()