Lines Matching full:size
37 * @brief Get tracing buffer capacity (max size).
48 * @param size Requested buffer size (in bytes).
50 * @return Size of allocated buffer which can be smaller than
53 uint32_t tracing_buffer_put_claim(uint8_t **data, uint32_t size);
58 * @param size Number of bytes written to the allocated buffer.
61 * @retval -EINVAL Given @a size exceeds free space of tracing buffer.
63 int tracing_buffer_put_finish(uint32_t size);
69 * @param size Data size (in bytes).
73 uint32_t tracing_buffer_put(uint8_t *data, uint32_t size);
80 * @param size Requested buffer size (in bytes).
82 * @return Size of valid buffer which can be smaller than requested
85 uint32_t tracing_buffer_get_claim(uint8_t **data, uint32_t size);
90 * @param size Number of bytes read from claimed buffer.
93 * @retval -EINVAL Given @a size exceeds available data of tracing buffer.
95 int tracing_buffer_get_finish(uint32_t size);
101 * @param size Data size (in bytes).
105 uint32_t tracing_buffer_get(uint8_t *data, uint32_t size);
112 * @return Tracing command buffer size (in bytes).