Lines Matching refs:name
512 * disk_name, or a buffer that holds the decoded no-key name.
518 * For casefolded directories: the casefolded name, but it's left NULL
519 * if the original name is not valid Unicode, if the original name is
523 * we fall back to treating the name as an opaque byte sequence.
820 f2fs_hash_t chash; /* hash value of given file name */
821 unsigned int clevel; /* maximum level of given file name */
2338 #define PAGE_PRIVATE_GET_FUNC(name, flagname) \
2339 static inline bool page_private_##name(struct page *page) \
2346 #define PAGE_PRIVATE_SET_FUNC(name, flagname) \
2347 static inline void set_page_private_##name(struct page *page) \
2355 #define PAGE_PRIVATE_CLEAR_FUNC(name, flagname) \
2356 static inline void clear_page_private_##name(struct page *page) \
2792 static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
2795 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL);
3368 static inline bool is_dot_dotdot(const u8 *name, size_t len)
3370 if (len == 1 && name[0] == '.')
3373 if (len == 2 && name[0] == '.' && name[1] == '.')
3521 int f2fs_update_extension_list(struct f2fs_sb_info *sbi, const char *name,
3562 const struct fscrypt_str *name, f2fs_hash_t name_hash,
3568 int f2fs_do_add_link(struct inode *dir, const struct qstr *name,
4428 #define F2FS_FEATURE_FUNCS(name, flagname) \
4429 static inline bool f2fs_sb_has_##name(struct f2fs_sb_info *sbi) \