Lines Matching refs:TaskHandle_t
64 #define xTaskHandle TaskHandle_t
184 typedef txfr_task_t* TaskHandle_t; typedef
339 TaskHandle_t xTaskCreateStatic(TaskFunction_t pxTaskCode,
352 TaskHandle_t * const pxCreatedTask);
356 void vTaskDelete(TaskHandle_t xTask);
362 TaskHandle_t xTaskGetCurrentTaskHandle(void);
364 void vTaskSuspend(TaskHandle_t xTaskToSuspend);
366 void vTaskResume(TaskHandle_t xTaskToResume);
368 BaseType_t xTaskResumeFromISR(TaskHandle_t xTaskToResume);
370 BaseType_t xTaskAbortDelay(TaskHandle_t xTask);
372 UBaseType_t uxTaskPriorityGet(const TaskHandle_t xTask);
374 UBaseType_t uxTaskPriorityGetFromISR(const TaskHandle_t xTask);
376 void vTaskPrioritySet(TaskHandle_t xTask,
379 char *pcTaskGetName(TaskHandle_t xTaskToQuery);
381 eTaskState eTaskGetState(TaskHandle_t xTask);
390 BaseType_t xTaskNotifyGive(TaskHandle_t xTaskToNotify);
392 void vTaskNotifyGiveFromISR(TaskHandle_t xTaskToNotify,
403 BaseType_t xTaskNotify(TaskHandle_t xTaskToNotify,
407 BaseType_t xTaskNotifyFromISR(TaskHandle_t xTaskToNotify,
412 BaseType_t xTaskNotifyAndQuery(TaskHandle_t xTaskToNotify,
419 BaseType_t xTaskNotifyAndQueryFromISR(TaskHandle_t xTaskToNotify,
427 BaseType_t xTaskNotifyStateClear(TaskHandle_t xTask);
429 uint32_t ulTaskNotifyValueClear(TaskHandle_t xTask,
475 TaskHandle_t xSemaphoreGetMutexHolder(SemaphoreHandle_t xMutex);
477 TaskHandle_t xSemaphoreGetMutexHolderFromISR(SemaphoreHandle_t xMutex);