Lines Matching full:on

41 /* *INDENT-ON* */
108 * that will be copied for each posted item. Each item on the queue must be
182 * that will be copied for each posted item. Each item on the queue must be
282 * @param xQueue The handle to the queue on which the item is to be posted.
284 * @param pvItemToQueue A pointer to the item that is to be placed on the
290 * waiting for space to become available on the queue, should it already
365 * @param xQueue The handle to the queue on which the item is to be posted.
367 * @param pvItemToQueue A pointer to the item that is to be placed on the
373 * waiting for space to become available on the queue, should it already
446 * Post an item on a queue. The item is queued by copy, not by reference.
450 * @param xQueue The handle to the queue on which the item is to be posted.
452 * @param pvItemToQueue A pointer to the item that is to be placed on the
458 * waiting for space to become available on the queue, should it already
528 * Post an item on a queue. If the queue is already full then overwrite the
536 * @param pvItemToQueue A pointer to the item that is to be placed on the
555 * // recommended *not* to use xQueueOverwrite() on queues that can
615 * Post an item on a queue. The item is queued by copy, not by reference.
619 * @param xQueue The handle to the queue on which the item is to be posted.
621 * @param pvItemToQueue A pointer to the item that is to be placed on the
627 * waiting for space to become available on the queue, should it already
706 * Successfully received items remain on the queue so will be returned again
769 * // Peek a message on the created queue. Block for 10 ticks if a
774 * // by vATask, but the item still remains on the queue.
805 * Successfully received items remain on the queue so will be returned again
898 * // Receive a message on the created queue. Block for 10 ticks if a
960 * placed on the queue.
988 * @param xQueue The handle to the queue on which the item is to be posted.
990 * @param pvItemToQueue A pointer to the item that is to be placed on the
1060 * @param xQueue The handle to the queue on which the item is to be posted.
1062 * @param pvItemToQueue A pointer to the item that is to be placed on the
1128 * Post an item on a queue. If the queue is already full then overwrite the
1131 * @param xQueue The handle to the queue on which the item is to be posted.
1133 * @param pvItemToQueue A pointer to the item that is to be placed on the
1158 * // recommended *not* to use xQueueOverwriteFromISR() on queues that can
1225 * @param xQueue The handle to the queue on which the item is to be posted.
1227 * @param pvItemToQueue A pointer to the item that is to be placed on the
1297 * Post an item on a queue. It is safe to use this function from within an
1304 * @param xQueue The handle to the queue on which the item is to be posted.
1306 * @param pvItemToQueue A pointer to the item that is to be placed on the
1388 * become available on the queue. If xQueueReceiveFromISR causes such a task
1429 * // ISR that outputs all the characters received on the queue.
1562 * preferably in ROM/Flash), not on the stack.
1635 * Queue sets provide a mechanism to allow a task to block (pend) on a read
1648 * Note 1: See the documentation on https://www.FreeRTOS.org/RTOS-queue-sets.html
1650 * simpler methods of blocking on multiple objects.
1652 * Note 2: Blocking on a queue set that contains a mutex will not cause the
1660 * semaphore) operation must not be performed on a member of a queue set unless
1663 * @param uxEventQueueLength Queue sets store events that occur on
1694 * semaphore) operation must not be performed on a member of a queue set unless
1739 * allows a task to block (pend) on a read operation on all the queues and
1745 * Note 1: See the documentation on https://www.FreeRTOS.org/RTOS-queue-sets.html
1747 * simpler methods of blocking on multiple objects.
1749 * Note 2: Blocking on a queue set that contains a mutex will not cause the
1753 * semaphore) operation must not be performed on a member of a queue set unless
1756 * @param xQueueSet The queue set on which the task will (potentially) block.
1808 /* *INDENT-ON* */