Lines Matching refs:name
16 * named with the name of the extended attribute.
193 fill_with_dentries(struct dir_context *ctx, const char *name, int namelen,
205 if (name[0] == '.' && (namelen < 2 ||
206 (namelen == 2 && name[1] == '.')))
209 dentry = lookup_one_len(name, dbuf->xadir, namelen);
389 static struct dentry *xattr_lookup(struct inode *inode, const char *name,
400 xafile = lookup_one_len(name, xadir, strlen(name));
484 static int lookup_and_delete_xattr(struct inode *inode, const char *name)
494 dentry = lookup_one_len(name, xadir, strlen(name));
520 struct inode *inode, const char *name,
536 err = lookup_and_delete_xattr(inode, name);
540 dentry = xattr_lookup(inode, name, flags);
618 int reiserfs_xattr_set(struct inode *inode, const char *name,
640 error = reiserfs_xattr_set_handle(&th, inode, name,
656 reiserfs_xattr_get(struct inode *inode, const char *name, void *buffer,
667 if (name == NULL)
684 dentry = xattr_lookup(inode, name, XATTR_REPLACE);
734 "associated with %k", name,
754 "with %k", name, INODE_PKEY(inode));
783 const char *name)
792 if (strncmp(prefix, name, strlen(prefix)) == 0)
807 static int listxattr_filler(struct dir_context *ctx, const char *name,
815 if (name[0] != '.' ||
816 (namelen != 1 && (name[1] != '.' || namelen != 2))) {
820 name);
821 if (!handler /* Unsupported xattr name */ ||
830 memcpy(b->buf + b->pos, name, namelen);