• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/isofs/

Lines Matching defs:qstr

30 static int isofs_hashi(struct dentry *parent, struct qstr *qstr);
31 static int isofs_hash(struct dentry *parent, struct qstr *qstr);
32 static int isofs_dentry_cmpi(struct dentry *dentry, struct qstr *a, struct qstr *b);
33 static int isofs_dentry_cmp(struct dentry *dentry, struct qstr *a, struct qstr *b);
36 static int isofs_hashi_ms(struct dentry *parent, struct qstr *qstr);
37 static int isofs_hash_ms(struct dentry *parent, struct qstr *qstr);
38 static int isofs_dentry_cmpi_ms(struct dentry *dentry, struct qstr *a, struct qstr *b);
39 static int isofs_dentry_cmp_ms(struct dentry *dentry, struct qstr *a, struct qstr *b);
162 isofs_hash_common(struct dentry *dentry, struct qstr *qstr, int ms)
167 len = qstr->len;
168 name = qstr->name;
174 qstr->hash = full_name_hash(name, len);
183 isofs_hashi_common(struct dentry *dentry, struct qstr *qstr, int ms)
190 len = qstr->len;
191 name = qstr->name;
202 qstr->hash = end_name_hash(hash);
210 static int isofs_dentry_cmpi_common(struct dentry *dentry, struct qstr *a,
211 struct qstr *b, int ms)
234 static int isofs_dentry_cmp_common(struct dentry *dentry, struct qstr *a,
235 struct qstr *b, int ms)
256 isofs_hash(struct dentry *dentry, struct qstr *qstr)
258 return isofs_hash_common(dentry, qstr, 0);
262 isofs_hashi(struct dentry *dentry, struct qstr *qstr)
264 return isofs_hashi_common(dentry, qstr, 0);
268 isofs_dentry_cmp(struct dentry *dentry,struct qstr *a,struct qstr *b)
274 isofs_dentry_cmpi(struct dentry *dentry,struct qstr *a,struct qstr *b)
281 isofs_hash_ms(struct dentry *dentry, struct qstr *qstr)
283 return isofs_hash_common(dentry, qstr, 1);
287 isofs_hashi_ms(struct dentry *dentry, struct qstr *qstr)
289 return isofs_hashi_common(dentry, qstr, 1);
293 isofs_dentry_cmp_ms(struct dentry *dentry,struct qstr *a,struct qstr *b)
299 isofs_dentry_cmpi_ms(struct dentry *dentry,struct qstr *a,struct qstr *b)