Lines Matching full:for

19  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
20 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
78 * documentation for more information.
85 * of the WEB documentation for further information.
96 * // This may not be necessary for const variables.
103 * for( ;; )
105 * // This co-routine just delays for a fixed period, then toggles
127 * for( uxIndex = 0; uxIndex < 2; uxIndex++ )
172 * for( ;; )
202 * for( ;; )
237 * for( ;; )
252 * These macros are intended for internal use by the co-routine implementation
268 * Delay a co-routine for a fixed period of time.
278 * for. The actual amount of time this equates to is defined by
288 * // This may not be necessary for const variables.
289 * // We are to delay for 200ms.
295 * for( ;; )
297 * // Delay for 200ms.
340 * See the co-routine section of the WEB documentation for information on
357 * to wait for space to become available on the queue, should space not be
369 * // Co-routine function that blocks for a fixed period then posts a number onto
380 * for( ;; )
393 * // Delay for 100 ticks.
441 * See the co-routine section of the WEB documentation for information on
457 * to wait for data to become available from the queue, should data not be
480 * for( ;; )
482 * // Wait for data to become available on the queue.
535 * See the co-routine section of the WEB documentation for information on
557 * // A co-routine that blocks on a queue waiting for characters to be received.
566 * for( ;; )
568 * // Wait for data to become available on the queue. This assumes the
636 * See the co-routine section of the WEB documentation for information on
647 * @param pxCoRoutineWoken A co-routine may be blocked waiting for space to become
657 * // A co-routine that posts a character to a queue then blocks for a fixed
669 * for( ;; )
688 * // Increment to the next character then block for a fixed period.
729 * This function is intended for internal use by the co-routine macros only.
741 * This function is intended for internal use by the queue implementation only.