Lines Matching refs:fd
20 struct hfs_find_data fd; in hfs_setxattr() local
28 res = hfs_find_init(HFS_SB(inode->i_sb)->cat_tree, &fd); in hfs_setxattr()
31 fd.search_key->cat = HFS_I(inode)->cat_key; in hfs_setxattr()
32 res = hfs_brec_find(&fd); in hfs_setxattr()
35 hfs_bnode_read(fd.bnode, &rec, fd.entryoffset, in hfs_setxattr()
52 hfs_bnode_write(fd.bnode, &rec, fd.entryoffset, in hfs_setxattr()
55 hfs_find_exit(&fd); in hfs_setxattr()
63 struct hfs_find_data fd; in hfs_getxattr() local
72 res = hfs_find_init(HFS_SB(inode->i_sb)->cat_tree, &fd); in hfs_getxattr()
75 fd.search_key->cat = HFS_I(inode)->cat_key; in hfs_getxattr()
76 res = hfs_brec_find(&fd); in hfs_getxattr()
79 hfs_bnode_read(fd.bnode, &rec, fd.entryoffset, in hfs_getxattr()
100 hfs_find_exit(&fd); in hfs_getxattr()