Lines Matching refs:size
36 _hurd_xattr_get (io_t port, const char *name, void *value, size_t *size) in _hurd_xattr_get() argument
49 *size = 0; in _hurd_xattr_get()
52 if (*size < sizeof st.st_author) in _hurd_xattr_get()
56 *size = sizeof st.st_author; in _hurd_xattr_get()
63 size_t bufsz = value ? *size : 0; in _hurd_xattr_get()
67 if (value != NULL && *size < bufsz) in _hurd_xattr_get()
79 *size = bufsz; in _hurd_xattr_get()
87 _hurd_xattr_set (io_t port, const char *name, const void *value, size_t size, in _hurd_xattr_set() argument
95 switch (size) in _hurd_xattr_set()
160 value, size, in _hurd_xattr_set()
174 _hurd_xattr_list (io_t port, void *buffer, size_t *size) in _hurd_xattr_list() argument
181 if (bufp != NULL && total <= *size) in _hurd_xattr_list()
196 if (buffer != NULL && total > *size) in _hurd_xattr_list()
198 *size = total; in _hurd_xattr_list()