Lines Matching defs:name
25 * @name: name string and length qstr structure
28 * make sure that either the old or the new name pointer and length are
32 * the beginning of the name. The sequence number check at the caller will
38 static int prepend_name(char **buffer, int *buflen, const struct qstr *name)
40 const char *dname = smp_load_acquire(&name->name); /* ^^^ */
41 u32 dlen = READ_ONCE(name->len);
171 * Convert a dentry into an ASCII path name.
252 * Convert a dentry into an ASCII path name. If the entry has been deleted
257 * in buffer, to use the name! The implementation often starts at an offset
271 * thus don't need to be hashed. They also don't need a name until a
273 * below allows us to generate a name for these objects on demand:
320 prepend(&end, &buflen, dentry->d_name.name, dentry->d_name.len) ||