fs/hfs/btree.h
12
typedef int (*btree_keycmp)(const btree_key *, const btree_key *);
fs/hfs/btree.h
78
btree_key *key;
fs/hfs/btree.h
79
btree_key *search_key;
fs/hfs/catalog.c
171
int hfs_cat_keycmp(const btree_key *key1, const btree_key *key2)
fs/hfs/catalog.c
23
void hfs_cat_build_key(struct super_block *sb, btree_key *key, u32 parent, const struct qstr *name)
fs/hfs/dir.c
311
(btree_key *)&HFS_I(d_inode(old_dentry))->cat_key,
fs/hfs/extent.c
50
int hfs_ext_keycmp(const btree_key *key1, const btree_key *key2)
fs/hfs/hfs_fs.h
146
extern int hfs_cat_keycmp(const btree_key *key1, const btree_key *key2);
fs/hfs/hfs_fs.h
157
extern void hfs_cat_build_key(struct super_block *sb, btree_key *key,
fs/hfs/hfs_fs.h
165
extern int hfs_ext_keycmp(const btree_key *key1, const btree_key *key2);
fs/hfs/inode.c
200
hfs_cat_build_key(sb, (btree_key *)&HFS_I(inode)->cat_key, dir->i_ino, name);