Lines Matching defs:buffer

48 	u8	data[];			/* Payload buffer */
72 void *sndbuf; /* send buffer */
73 size_t sndbuf_len; /* length of send buffer */
86 size_t offset; /* data buffer offset */
87 struct iucv_tty_msg *mbuf; /* buffer to store input/output data */
140 * @size: Size of the internal buffer used to store data.
144 * allocates an internal data buffer with the specified size @size.
145 * The internal data buffer is always allocated with GFP_DMA which is
147 * Note: The total message size arises from the internal buffer size and the
199 * hvc_iucv_write() - Receive IUCV message & write data to HVC buffer.
201 * @buf: HVC buffer for writing received terminal data.
202 * @count: HVC buffer size.
206 * the message data that is then written to the specified buffer @buf.
207 * If the buffer size @count is less than the data message size, the
244 * then leave the buffer on the list and re-try later */
260 /* remove buffer if an error has occurred or received data
304 * @buf: Pointer to a buffer to store data
305 * @count: Size of buffer available for writing
309 * are received and data is copied into buffer @buf up to @count bytes.
343 * @count: Size of buffer and amount of data to send.
351 * If the buffer is full, the function returns 0.
402 /* allocate internal buffer to store msg data and also compute total
449 * @buf: Pointer to an buffer to read data from
450 * @count: Size of buffer available for reading
533 * flush_sndbuf_sync() - Flush send buffer and wait for completion
920 /* allocate tty buffer to save iucv msg only */
1266 * @buffer: Buffer to store z/VM user ID filter,
1267 * (buffer size assumption PAGE_SIZE)
1271 * in @buffer. Typically, sysfs routines call this function for attr show.
1273 static int param_get_vmidfilter(char *buffer, const struct kernel_param *kp)
1288 memcpy(buffer + rc, start, len);
1290 buffer[rc++] = ',';
1294 buffer[--rc] = '\0'; /* replace last comma and update rc */