Lines Matching defs:name
480 * disk_name, or a buffer that holds the decoded no-key name.
486 * For casefolded directories: the casefolded name, but it's left NULL
487 * if the original name is not valid Unicode or if the filesystem is
489 * cases we fall back to treating the name as an opaque byte sequence.
726 f2fs_hash_t chash; /* hash value of given file name */
727 unsigned int clevel; /* maximum level of given file name */
2457 static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
2460 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL);
2996 static inline bool is_dot_dotdot(const u8 *name, size_t len)
2998 if (len == 1 && name[0] == '.')
3001 if (len == 2 && name[0] == '.' && name[1] == '.')
3212 int f2fs_update_extension_list(struct f2fs_sb_info *sbi, const char *name,
3252 const struct fscrypt_str *name, f2fs_hash_t name_hash,
3258 int f2fs_do_add_link(struct inode *dir, const struct qstr *name,
4012 #define F2FS_FEATURE_FUNCS(name, flagname) \
4013 static inline int f2fs_sb_has_##name(struct f2fs_sb_info *sbi) \