Lines Matching refs:TaskHandle_t
65 #define xTaskHandle TaskHandle_t
185 typedef txfr_task_t* TaskHandle_t; typedef
340 TaskHandle_t xTaskCreateStatic(TaskFunction_t pxTaskCode,
353 TaskHandle_t * const pxCreatedTask);
357 void vTaskDelete(TaskHandle_t xTask);
363 TaskHandle_t xTaskGetCurrentTaskHandle(void);
365 void vTaskSuspend(TaskHandle_t xTaskToSuspend);
367 void vTaskResume(TaskHandle_t xTaskToResume);
369 BaseType_t xTaskResumeFromISR(TaskHandle_t xTaskToResume);
371 BaseType_t xTaskAbortDelay(TaskHandle_t xTask);
373 UBaseType_t uxTaskPriorityGet(const TaskHandle_t xTask);
375 UBaseType_t uxTaskPriorityGetFromISR(const TaskHandle_t xTask);
377 void vTaskPrioritySet(TaskHandle_t xTask,
380 char *pcTaskGetName(TaskHandle_t xTaskToQuery);
382 eTaskState eTaskGetState(TaskHandle_t xTask);
391 BaseType_t xTaskNotifyGive(TaskHandle_t xTaskToNotify);
393 void vTaskNotifyGiveFromISR(TaskHandle_t xTaskToNotify,
404 BaseType_t xTaskNotify(TaskHandle_t xTaskToNotify,
408 BaseType_t xTaskNotifyFromISR(TaskHandle_t xTaskToNotify,
413 BaseType_t xTaskNotifyAndQuery(TaskHandle_t xTaskToNotify,
420 BaseType_t xTaskNotifyAndQueryFromISR(TaskHandle_t xTaskToNotify,
428 BaseType_t xTaskNotifyStateClear(TaskHandle_t xTask);
430 uint32_t ulTaskNotifyValueClear(TaskHandle_t xTask,
476 TaskHandle_t xSemaphoreGetMutexHolder(SemaphoreHandle_t xMutex);
478 TaskHandle_t xSemaphoreGetMutexHolderFromISR(SemaphoreHandle_t xMutex);