Searched refs:filetype (Results 1 - 22 of 22) sorted by relevance

/linux-master/fs/
H A Dfs_types.c21 * @filetype: The on-disk file type to convert.
37 unsigned char fs_ftype_to_dtype(unsigned int filetype) argument
39 if (filetype >= FT_MAX)
42 return fs_dtype_by_ftype[filetype];
/linux-master/include/linux/
H A Dfs_types.h71 extern unsigned char fs_ftype_to_dtype(unsigned int filetype);
/linux-master/fs/xfs/
H A Dxfs_dir2_readdir.c34 uint8_t filetype)
39 if (filetype >= XFS_DIR3_FT_MAX)
42 return xfs_dir3_filetype_table[filetype];
106 uint8_t filetype; local
117 filetype = xfs_dir2_sf_get_ftype(mp, sfep);
126 xfs_dir3_get_dtype(mp, filetype)))
184 uint8_t filetype; local
209 filetype = xfs_dir2_data_get_ftype(dp->i_mount, dep);
222 xfs_dir3_get_dtype(dp->i_mount, filetype)))
384 uint8_t filetype; local
32 xfs_dir3_get_dtype( struct xfs_mount *mp, uint8_t filetype) argument
[all...]
/linux-master/fs/adfs/
H A Ddir.c224 * filetype suffix to the name, check the filetype and append.
227 u16 filetype = adfs_filetype(obj->loadaddr); local
229 if (filetype != ADFS_FILETYPE_NONE) {
231 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 8);
232 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 4);
233 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 0);
/linux-master/fs/xfs/libxfs/
H A Dxfs_dir2_sf.c67 * offset behind the entry name. If the entry stores a filetype value, then it
130 * The file type field is stored at the end of the name for filetype enabled
192 * if there is a filetype field, add the extra byte to the namelen
482 xfs_dir2_sf_put_ftype(mp, sfep, args->filetype);
568 xfs_dir2_sf_put_ftype(mp, sfep, args->filetype);
711 uint8_t filetype; local
766 filetype = xfs_dir2_sf_get_ftype(mp, sfep);
767 if (filetype >= XFS_DIR3_FT_MAX)
868 args->filetype = XFS_DIR3_FT_DIR;
878 args->filetype
[all...]
H A Dxfs_da_btree.h59 uint8_t filetype; /* filetype of inode for directories */ member in struct:xfs_da_args
H A Dxfs_dir2.c36 * Convert inode mode to directory entry filetype
290 args->filetype = name->type;
380 args->filetype = name->type;
452 args->filetype = name->type;
513 args->filetype = name->type;
H A Dxfs_dir2.h40 * Convert inode mode to directory entry filetype
259 unsigned char xfs_dir3_get_dtype(struct xfs_mount *mp, uint8_t filetype);
H A Dxfs_dir2_block.c575 xfs_dir2_data_put_ftype(dp->i_mount, dep, args->filetype);
667 args->filetype = xfs_dir2_data_get_ftype(dp->i_mount, dep);
897 xfs_dir2_data_put_ftype(dp->i_mount, dep, args->filetype);
H A Dxfs_dir2_leaf.c871 xfs_dir2_data_put_ftype(dp->i_mount, dep, args->filetype);
1201 args->filetype = xfs_dir2_data_get_ftype(dp->i_mount, dep);
1534 xfs_dir2_data_put_ftype(dp->i_mount, dep, args->filetype);
H A Dxfs_dir2_node.c895 args->filetype = xfs_dir2_data_get_ftype(mp, dep);
1981 xfs_dir2_data_put_ftype(dp->i_mount, dep, args->filetype);
2218 ftype = args->filetype;
/linux-master/usr/
H A Dgen_initramfs.sh44 filetype() { function
85 # <filetype> <name> <path to file> <octal mode> <uid> <gid>
95 local ftype=$(filetype "${location}")
/linux-master/drivers/crypto/intel/qat/qat_common/
H A Dicp_qat_hw.h376 algo, depth, filetype) \
385 (((filetype) & QAT_COMPRESSION_FILE_TYPE_MASK) << \
/linux-master/security/
H A Ddevice_cgroup.c611 int filetype, char *buffer)
629 switch (filetype) {
743 switch (filetype) {
610 devcgroup_update_access(struct dev_cgroup *devcgroup, int filetype, char *buffer) argument
/linux-master/sound/pci/hda/
H A Dcs35l56_hda.c403 const char *filetype)
410 system_name, amp_name, filetype);
413 system_name, filetype);
415 *filename = kasprintf(GFP_KERNEL, "%s.%s", base_name, filetype);
399 cs35l56_hda_request_firmware_file(struct cs35l56_hda *cs35l56, const struct firmware **firmware, char **filename, const char *base_name, const char *system_name, const char *amp_name, const char *filetype) argument
H A Dcs35l41_hda.c123 int spkid, const char *filetype)
132 ssid, spkid, amp_name, filetype);
136 ssid, spkid, filetype);
140 ssid, amp_name, filetype);
144 ssid, filetype);
148 filetype);
120 cs35l41_request_firmware_file(struct cs35l41_hda *cs35l41, const struct firmware **firmware, char **filename, const char *dir, const char *ssid, const char *amp_name, int spkid, const char *filetype) argument
/linux-master/fs/jfs/
H A Dnamei.c625 int filetype; local
630 filetype = ip->i_mode & S_IFMT;
631 switch (filetype) {
642 assert(filetype != S_IFDIR);
/linux-master/fs/xfs/scrub/
H A Dreaddir.c323 .filetype = name->type,
/linux-master/samples/hid/
H A DMakefile247 $(LLC) -march=bpf $(LLC_FLAGS) -filetype=obj -o $@
/linux-master/sound/soc/codecs/
H A Dwm_adsp.c740 const char *filetype)
755 asoc_component_prefix, filetype);
759 filetype);
762 wm_adsp_fw[dsp->fw].file, filetype);
736 wm_adsp_request_firmware_file(struct wm_adsp *dsp, const struct firmware **firmware, char **filename, const char *dir, const char *system_name, const char *asoc_component_prefix, const char *filetype) argument
/linux-master/samples/bpf/
H A DMakefile412 $(LLC) -march=bpf $(LLC_FLAGS) -filetype=obj -o $@
/linux-master/fs/ext4/
H A Dext4.h2140 EXT4_FEATURE_INCOMPAT_FUNCS(filetype, FILETYPE)
2839 static inline unsigned char get_dtype(struct super_block *sb, int filetype) argument
2841 if (!ext4_has_feature_filetype(sb) || filetype >= EXT4_FT_MAX)
2844 return ext4_filetype_table[filetype];

Completed in 300 milliseconds