Lines Matching defs:buffer
61 int max_size; /* largest xattr that fits in current buffer */
64 struct jfs_ea_list *xattr; /* buffer containing ea list */
103 static inline int copy_name(char *buffer, struct jfs_ea *ea)
108 memcpy(buffer, XATTR_OS2_PREFIX, XATTR_OS2_PREFIX_LEN);
109 buffer += XATTR_OS2_PREFIX_LEN;
112 memcpy(buffer, ea->name, ea->namelen);
113 buffer[ea->namelen] = 0;
241 * loop over the FEALIST copying data into the buffer one page at
272 * the write failed -- this means that the buffer
309 * FUNCTION: Read an inlined EA into user's buffer
313 * ealist - Pointer to buffer to fill in with EA
341 * FUNCTION: copy EA data into user's buffer
345 * ealist - Pointer to buffer to fill in with EA
384 * data into the buffer.
412 * FUNCTION: Returns buffer containing existing extended attributes.
413 * The size of the buffer will be the larger of the existing
416 * The buffer, which may be inlined in the inode or in the
422 * min_size- minimum size of buffer to be returned
481 * contiguous buffer to work with. Make the buffer large
858 char *buffer;
892 /* Copy attribute names to buffer */
893 buffer = data;
896 int namelen = copy_name(buffer, ea);
897 buffer += namelen + 1;