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
32 * particularly suited for interrupt to task and core to core communication
39 * interrupt that will read from the buffer (the reader). It is safe for the
66 * Type by which stream buffers are referenced. For example, a call to
89 * xStreamBufferCreateStatic() for a version that uses statically allocated
93 * FreeRTOSConfig.h for xStreamBufferCreate() to be available.
99 * buffer before a task that is blocked on the stream buffer to wait for data is
100 * moved out of the blocked state. For example, if a task is blocked on a read
123 * because there is insufficient heap memory available for FreeRTOS to allocate
175 * xStreamBufferCreate() for a version that uses dynamically allocated memory.
177 * configSUPPORT_STATIC_ALLOCATION must be set to 1 in FreeRTOSConfig.h for
184 * buffer before a task that is blocked on the stream buffer to wait for data is
185 * moved out of the blocked state. For example, if a task is blocked on a read
276 * @param xStreamBuffer The stream buffer for which to retrieve the buffers.
311 * interrupt that will read from the buffer (the reader). It is safe for the
336 * Blocked state to wait for enough space to become available in the stream
361 * // Send an array to the stream buffer, blocking for a maximum of 100ms to
362 * // wait for enough space to be available in the stream buffer.
368 * // space in the buffer for the data to be written, but it did
409 * interrupt that will read from the buffer (the reader). It is safe for the
434 * have a task blocked on it waiting for data. Calling
436 * was waiting for data to leave the Blocked state. If calling
445 * is passed into the function. See the example code below for an example.
449 * space for all the bytes to be written.
470 * // There was not enough free space in the stream buffer for the entire
481 * // documentation for the port in use for port specific instructions.
509 * interrupt that will read from the buffer (the reader). It is safe for the
536 * Blocked state to wait for data to become available if the stream buffer is
559 * // Wait in the Blocked state (so not using any CPU processing time) for a
560 * // maximum of 100ms for the full sizeof( ucRxData ) number of bytes to be
611 * have a task blocked on it waiting for space to become available. Calling
613 * that is waiting for space to leave the Blocked state. If calling
622 * passed into the function. See the code example below for an example.
656 * // documentation for the port in use for port specific instructions.
804 * wait for data is moved out of the blocked state. For example, if a task is
821 * @param xTriggerLevel The new trigger level for the stream buffer.
840 * For advanced users only.
844 * was blocked on the message or stream buffer waiting for data to arrive then
850 * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
880 * For advanced users only.
884 * that was blocked on the message or stream buffer waiting for data to arrive
891 * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for