• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/hfs/

Lines Matching defs:hfs_bnode

40 	struct hfs_bnode *node_hash[NODE_HASH_SIZE];
45 struct hfs_bnode {
57 struct hfs_bnode *next_hash;
73 struct hfs_bnode *bnode;
84 extern struct hfs_bnode * hfs_bmap_alloc(struct hfs_btree *);
85 extern void hfs_bmap_free(struct hfs_bnode *node);
88 extern void hfs_bnode_read(struct hfs_bnode *, void *, int, int);
89 extern u16 hfs_bnode_read_u16(struct hfs_bnode *, int);
90 extern u8 hfs_bnode_read_u8(struct hfs_bnode *, int);
91 extern void hfs_bnode_read_key(struct hfs_bnode *, void *, int);
92 extern void hfs_bnode_write(struct hfs_bnode *, void *, int, int);
93 extern void hfs_bnode_write_u16(struct hfs_bnode *, int, u16);
94 extern void hfs_bnode_write_u8(struct hfs_bnode *, int, u8);
95 extern void hfs_bnode_clear(struct hfs_bnode *, int, int);
96 extern void hfs_bnode_copy(struct hfs_bnode *, int,
97 struct hfs_bnode *, int, int);
98 extern void hfs_bnode_move(struct hfs_bnode *, int, int, int);
99 extern void hfs_bnode_dump(struct hfs_bnode *);
100 extern void hfs_bnode_unlink(struct hfs_bnode *);
101 extern struct hfs_bnode *hfs_bnode_findhash(struct hfs_btree *, u32);
102 extern struct hfs_bnode *hfs_bnode_find(struct hfs_btree *, u32);
103 extern void hfs_bnode_unhash(struct hfs_bnode *);
104 extern void hfs_bnode_free(struct hfs_bnode *);
105 extern struct hfs_bnode *hfs_bnode_create(struct hfs_btree *, u32);
106 extern void hfs_bnode_get(struct hfs_bnode *);
107 extern void hfs_bnode_put(struct hfs_bnode *);
110 extern u16 hfs_brec_lenoff(struct hfs_bnode *, u16, u16 *);
111 extern u16 hfs_brec_keylen(struct hfs_bnode *, u16);
118 extern int __hfs_brec_find(struct hfs_bnode *, struct hfs_find_data *);