Symbol: extended_attribute
fs/hpfs/anode.c
486
struct extended_attribute *ea;
fs/hpfs/anode.c
487
struct extended_attribute *ea_end;
fs/hpfs/ea.c
136
struct extended_attribute *ea;
fs/hpfs/ea.c
137
struct extended_attribute *ea_end = fnode_end_ea(fnode);
fs/hpfs/ea.c
156
ea = (struct extended_attribute *)ex;
fs/hpfs/ea.c
199
struct extended_attribute *ea;
fs/hpfs/ea.c
20
struct extended_attribute *ea = (struct extended_attribute *)ex;
fs/hpfs/ea.c
200
struct extended_attribute *ea_end = fnode_end_ea(fnode);
fs/hpfs/ea.c
217
ea = (struct extended_attribute *)ex;
fs/hpfs/ea.c
81
struct extended_attribute *ea;
fs/hpfs/ea.c
82
struct extended_attribute *ea_end = fnode_end_ea(fnode);
fs/hpfs/ea.c
98
ea = (struct extended_attribute *)ex;
fs/hpfs/hpfs.h
565
static inline bool ea_indirect(struct extended_attribute *ea)
fs/hpfs/hpfs.h
570
static inline bool ea_in_anode(struct extended_attribute *ea)
fs/hpfs/hpfs_fn.h
135
static inline struct extended_attribute *fnode_ea(struct fnode *fnode)
fs/hpfs/hpfs_fn.h
137
return (struct extended_attribute *)((char *)fnode + le16_to_cpu(fnode->ea_offs) + le16_to_cpu(fnode->acl_size_s));
fs/hpfs/hpfs_fn.h
140
static inline struct extended_attribute *fnode_end_ea(struct fnode *fnode)
fs/hpfs/hpfs_fn.h
142
return (struct extended_attribute *)((char *)fnode + le16_to_cpu(fnode->ea_offs) + le16_to_cpu(fnode->acl_size_s) + le16_to_cpu(fnode->ea_size_s));
fs/hpfs/hpfs_fn.h
145
static unsigned ea_valuelen(struct extended_attribute *ea)
fs/hpfs/hpfs_fn.h
150
static inline struct extended_attribute *next_ea(struct extended_attribute *ea)
fs/hpfs/hpfs_fn.h
152
return (struct extended_attribute *)((char *)ea + 5 + ea->namelen + ea_valuelen(ea));
fs/hpfs/hpfs_fn.h
155
static inline secno ea_sec(struct extended_attribute *ea)
fs/hpfs/hpfs_fn.h
160
static inline secno ea_len(struct extended_attribute *ea)
fs/hpfs/hpfs_fn.h
165
static inline char *ea_data(struct extended_attribute *ea)
fs/hpfs/map.c
172
struct extended_attribute *ea;
fs/hpfs/map.c
173
struct extended_attribute *ea_end;