Lines Matching full:buffer

9 #include <uapi/linux/iio/buffer.h>
15 * INDIO_BUFFER_FLAG_FIXED_WATERMARK - Watermark level of the buffer can not be
16 * configured. It has a fixed value which will be buffer specific.
22 * @store_to: actually store stuff to the buffer
25 * the buffer.
29 * @set_length: set number of datums in buffer
30 * @enable: called if the buffer is attached to a device and the
33 * @disable: called if the buffer is attached to a device and the
35 * @release: called when the last reference to the buffer is dropped,
36 * should free all resources allocated by the buffer.
37 * @modes: Supported operating modes by this buffer type
40 * The purpose of this structure is to make the buffer element
42 * different buffer designs (space efficiency vs speed for example).
44 * It is worth noting that a given buffer implementation may only support a
49 int (*store_to)(struct iio_buffer *buffer, const void *data);
50 int (*read)(struct iio_buffer *buffer, size_t n, char __user *buf);
51 size_t (*data_available)(struct iio_buffer *buffer);
53 int (*request_update)(struct iio_buffer *buffer);
55 int (*set_bytes_per_datum)(struct iio_buffer *buffer, size_t bpd);
56 int (*set_length)(struct iio_buffer *buffer, unsigned int length);
58 int (*enable)(struct iio_buffer *buffer, struct iio_dev *indio_dev);
59 int (*disable)(struct iio_buffer *buffer, struct iio_dev *indio_dev);
61 void (*release)(struct iio_buffer *buffer);
68 * struct iio_buffer - general buffer structure
71 * those writing new buffer implementations.
74 /** @length: Number of datums in buffer. */
84 * @access: Buffer access functions associated with the
95 /** @pollq: Wait queue to allow for polling on the buffer. */
105 /* @buffer_attr_list: List of buffer attributes. */
109 * @buffer_group: Attributes of the new buffer group.
114 /* @attrs: Standard attributes of the buffer. */
117 /* @demux_bounce: Buffer for doing gather from incoming scan. */
126 /* @ref: Reference count of the buffer. */
131 * iio_update_buffers() - add or remove buffer from active list
132 * @indio_dev: device to add buffer to
133 * @insert_buffer: buffer to insert
143 * iio_buffer_init() - Initialize the buffer structure
144 * @buffer: buffer to be initialized
146 void iio_buffer_init(struct iio_buffer *buffer);
148 struct iio_buffer *iio_buffer_get(struct iio_buffer *buffer);
149 void iio_buffer_put(struct iio_buffer *buffer);
153 static inline void iio_buffer_get(struct iio_buffer *buffer) {} in iio_buffer_get() argument
154 static inline void iio_buffer_put(struct iio_buffer *buffer) {} in iio_buffer_put() argument