Lines Matching refs:fd
25 struct hfs_find_data fd; in __hfs_setxattr() local
33 res = hfs_find_init(HFS_SB(inode->i_sb)->cat_tree, &fd); in __hfs_setxattr()
36 fd.search_key->cat = HFS_I(inode)->cat_key; in __hfs_setxattr()
37 res = hfs_brec_find(&fd); in __hfs_setxattr()
40 hfs_bnode_read(fd.bnode, &rec, fd.entryoffset, in __hfs_setxattr()
61 hfs_bnode_write(fd.bnode, &rec, fd.entryoffset, in __hfs_setxattr()
64 hfs_find_exit(&fd); in __hfs_setxattr()
71 struct hfs_find_data fd; in __hfs_getxattr() local
80 res = hfs_find_init(HFS_SB(inode->i_sb)->cat_tree, &fd); in __hfs_getxattr()
83 fd.search_key->cat = HFS_I(inode)->cat_key; in __hfs_getxattr()
84 res = hfs_brec_find(&fd); in __hfs_getxattr()
87 hfs_bnode_read(fd.bnode, &rec, fd.entryoffset, in __hfs_getxattr()
112 hfs_find_exit(&fd); in __hfs_getxattr()