Lines Matching refs:name
36 _hurd_xattr_get (io_t port, const char *name, void *value, size_t *size) in _hurd_xattr_get() argument
38 if (strncmp (name, "gnu.", 4)) in _hurd_xattr_get()
40 name += 4; in _hurd_xattr_get()
42 if (!strcmp (name, "author")) in _hurd_xattr_get()
60 if (!strcmp (name, "translator")) 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
90 if (strncmp (name, "gnu.", 4)) in _hurd_xattr_set()
92 name += 4; in _hurd_xattr_set()
94 if (!strcmp (name, "author")) in _hurd_xattr_set()
141 if (!strcmp (name, "translator")) in _hurd_xattr_set()
168 _hurd_xattr_remove (io_t port, const char *name) in _hurd_xattr_remove() argument
170 return _hurd_xattr_set (port, name, NULL, 0, XATTR_REPLACE); in _hurd_xattr_remove()
178 inline void add (const char *name, size_t len) in _hurd_xattr_list()
182 bufp = __mempcpy (bufp, name, len); in _hurd_xattr_list()