Lines Matching full:name

163 …const char * pcTaskName;                      /* A pointer to the task's name.  This value will be…
322 * @param pcName A descriptive name for the task. This is mainly used to
367 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, &ucParameterToPass, tskIDLE_PRIORITY, &xHandle );
426 * @param pcName A descriptive name for the task. This is mainly used to
491 * "NAME", // Text name for the task.
563 * "ATask", // pcName - just a text name for the task to assist debugging.
657 * "ATask", // pcName - just a text name for the task to assist debugging.
792 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
992 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1121 * // Obtain the handle of a task from its name.
1170 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1215 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1266 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1349 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &( xHandle ) );
1390 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &( xHandle ) );
1503 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
1559 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
1741 * @return The text (human readable) name of the task referenced by the handle
1742 * xTaskToQuery. A task can query its own name by either passing in its own
1759 * @return The handle of the task that has the human readable name pcNameToQuery.
1760 * NULL is returned if no matching name is found. INCLUDE_xTaskGetHandle
1937 * @param pcTaskName A character string containing the name of the offending task.
2085 * for the task handle, task name, task priority, task state, and total amount
3222 * xTaskCreateStatic() and store the returned value, or use the task's name in
3283 * use the task's name in a call to xTaskGetHandle().