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
35 * implementation is light weight, making them particularly suited for interrupt
42 * interrupt that will read from the buffer (the reader). It is safe for the
80 * Type by which message buffers are referenced. For example, a call to
98 * xMessageBufferCreateStatic() for a version that uses statically allocated
102 * FreeRTOSConfig.h for xMessageBufferCreate() to be available.
124 * because there is insufficient heap memory available for FreeRTOS to allocate
175 * xMessageBufferCreate() for a version that uses dynamically allocated memory.
261 * @param xMessageBuffer The message buffer for which to retrieve the buffers.
297 * interrupt that will read from the buffer (the reader). It is safe for the
327 * in the Blocked state to wait for enough space to become available in the
352 * // Send an array to the message buffer, blocking for a maximum of 100ms to
353 * // wait for enough space to be available in the message buffer.
359 * // space in the buffer for the data to be written.
397 * interrupt that will read from the buffer (the reader). It is safe for the
427 * have a task blocked on it waiting for data. Calling
429 * was waiting for data to leave the Blocked state. If calling
438 * is passed into the function. See the code example below for an example.
441 * message buffer didn't have enough free space for the message to be stored
474 * // documentation for the port in use for port specific instructions.
501 * interrupt that will read from the buffer (the reader). It is safe for the
528 * Blocked state to wait for a message, should the message buffer be empty.
553 * // state (so not using any CPU processing time) for a maximum of 100ms for
592 * interrupt that will read from the buffer (the reader). It is safe for the
619 * have a task blocked on it waiting for space to become available. Calling
621 * that is waiting for space to leave the Blocked state. If calling
630 * passed into the function. See the code example below for an example.
665 * // documentation for the port in use for port specific instructions.
746 * the message queue to wait for space to become available, or to wait for a
807 * For advanced users only.
811 * was blocked on the message or stream buffer waiting for data to arrive then
817 * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for
847 * For advanced users only.
851 * that was blocked on the message or stream buffer waiting for data to arrive
858 * See the example implemented in FreeRTOS/Demo/Minimal/MessageBufferAMP.c for