Lines Matching full:name

163 …const char * pcTaskName;                      /* A pointer to the task's name.  This value will be…
323 * @param pcName A descriptive name for the task. This is mainly used to
368 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, &ucParameterToPass, tskIDLE_PRIORITY, &xHandle );
427 * @param pcName A descriptive name for the task. This is mainly used to
492 * "NAME", // Text name for the task.
564 * "ATask", // pcName - just a text name for the task to assist debugging.
658 * "ATask", // pcName - just a text name for the task to assist debugging.
793 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
993 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1122 * // Obtain the handle of a task from its name.
1171 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1216 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1267 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1350 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &( xHandle ) );
1391 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &( xHandle ) );
1504 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
1560 * xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
1742 * @return The text (human readable) name of the task referenced by the handle
1743 * xTaskToQuery. A task can query its own name by either passing in its own
1760 * @return The handle of the task that has the human readable name pcNameToQuery.
1761 * NULL is returned if no matching name is found. INCLUDE_xTaskGetHandle
1938 * @param pcTaskName A character string containing the name of the offending task.
2086 * for the task handle, task name, task priority, task state, and total amount
3223 * xTaskCreateStatic() and store the returned value, or use the task's name in
3284 * use the task's name in a call to xTaskGetHandle().