Home
last modified time | relevance | path

Searched full:filetype (Results 1 – 25 of 86) sorted by relevance

1234

/kernel/linux/linux-5.10/fs/xfs/
Dxfs_dir2_readdir.c33 uint8_t filetype) in xfs_dir3_get_dtype() argument
38 if (filetype >= XFS_DIR3_FT_MAX) in xfs_dir3_get_dtype()
41 return xfs_dir3_filetype_table[filetype]; in xfs_dir3_get_dtype()
107 uint8_t filetype; in xfs_dir2_sf_getdents() local
118 filetype = xfs_dir2_sf_get_ftype(mp, sfep); in xfs_dir2_sf_getdents()
125 xfs_dir3_get_dtype(mp, filetype))) in xfs_dir2_sf_getdents()
182 uint8_t filetype; in xfs_dir2_block_getdents() local
207 filetype = xfs_dir2_data_get_ftype(dp->i_mount, dep); in xfs_dir2_block_getdents()
219 xfs_dir3_get_dtype(dp->i_mount, filetype))) in xfs_dir2_block_getdents()
383 uint8_t filetype; in xfs_dir2_leaf_getdents() local
[all …]
/kernel/linux/linux-6.6/fs/xfs/
Dxfs_dir2_readdir.c33 uint8_t filetype) in xfs_dir3_get_dtype() argument
38 if (filetype >= XFS_DIR3_FT_MAX) in xfs_dir3_get_dtype()
41 return xfs_dir3_filetype_table[filetype]; in xfs_dir3_get_dtype()
107 uint8_t filetype; in xfs_dir2_sf_getdents() local
118 filetype = xfs_dir2_sf_get_ftype(mp, sfep); in xfs_dir2_sf_getdents()
125 xfs_dir3_get_dtype(mp, filetype))) in xfs_dir2_sf_getdents()
183 uint8_t filetype; in xfs_dir2_block_getdents() local
208 filetype = xfs_dir2_data_get_ftype(dp->i_mount, dep); in xfs_dir2_block_getdents()
220 xfs_dir3_get_dtype(dp->i_mount, filetype))) in xfs_dir2_block_getdents()
382 uint8_t filetype; in xfs_dir2_leaf_getdents() local
[all …]
/kernel/linux/linux-5.10/fs/
Dfs_types.c21 * @filetype: The on-disk file type to convert.
37 unsigned char fs_ftype_to_dtype(unsigned int filetype) in fs_ftype_to_dtype() argument
39 if (filetype >= FT_MAX) in fs_ftype_to_dtype()
42 return fs_dtype_by_ftype[filetype]; in fs_ftype_to_dtype()
/kernel/linux/linux-6.6/fs/
Dfs_types.c21 * @filetype: The on-disk file type to convert.
37 unsigned char fs_ftype_to_dtype(unsigned int filetype) in fs_ftype_to_dtype() argument
39 if (filetype >= FT_MAX) in fs_ftype_to_dtype()
42 return fs_dtype_by_ftype[filetype]; in fs_ftype_to_dtype()
/kernel/linux/linux-5.10/fs/adfs/
Ddir.c224 * filetype suffix to the name, check the filetype and append. in adfs_object_fixup()
227 u16 filetype = adfs_filetype(obj->loadaddr); in adfs_object_fixup() local
229 if (filetype != ADFS_FILETYPE_NONE) { in adfs_object_fixup()
231 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 8); in adfs_object_fixup()
232 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 4); in adfs_object_fixup()
233 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 0); in adfs_object_fixup()
Dadfs.h14 /* RISC OS 12-bit filetype is stored in load_address[19:8] */
72 int s_ftsuffix; /* ,xyz hex filetype suffix option */
113 #define ADFS_MAX_NAME_LEN (256 + 4) /* +4 for ,xyz hex filetype suffix */
/kernel/linux/linux-6.6/fs/adfs/
Ddir.c224 * filetype suffix to the name, check the filetype and append. in adfs_object_fixup()
227 u16 filetype = adfs_filetype(obj->loadaddr); in adfs_object_fixup() local
229 if (filetype != ADFS_FILETYPE_NONE) { in adfs_object_fixup()
231 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 8); in adfs_object_fixup()
232 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 4); in adfs_object_fixup()
233 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 0); in adfs_object_fixup()
Dadfs.h14 /* RISC OS 12-bit filetype is stored in load_address[19:8] */
72 int s_ftsuffix; /* ,xyz hex filetype suffix option */
113 #define ADFS_MAX_NAME_LEN (256 + 4) /* +4 for ,xyz hex filetype suffix */
/kernel/linux/linux-5.10/tools/testing/selftests/tc-testing/
DMakefile12 PROBE := $(shell $(LLC) -march=bpf -mcpu=probe -filetype=null /dev/null 2>&1)
30 $(LLC) -march=bpf -mcpu=$(CPU) $(LLC_FLAGS) -filetype=obj -o $@
/kernel/linux/linux-6.6/tools/testing/selftests/tc-testing/
DMakefile10 PROBE := $(shell $(LLC) -march=bpf -mcpu=probe -filetype=null /dev/null 2>&1)
28 $(LLC) -march=bpf -mcpu=$(CPU) $(LLC_FLAGS) -filetype=obj -o $@
/kernel/linux/linux-6.6/Documentation/filesystems/
Dadfs.rst66 Owner read and filetype UnixExec -> ---x--x--x
72 Other read and filetype UnixExec -> ---x--x--x
77 not a UnixExec filetype, then the permissions will be::
/kernel/linux/linux-5.10/Documentation/filesystems/
Dadfs.rst66 Owner read and filetype UnixExec -> ---x--x--x
72 Other read and filetype UnixExec -> ---x--x--x
77 not a UnixExec filetype, then the permissions will be::
/kernel/linux/linux-6.6/fs/xfs/libxfs/
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 in xfs_dir2_block_sfsize()
487 xfs_dir2_sf_put_ftype(mp, sfep, args->filetype); in xfs_dir2_sf_addname_easy()
577 xfs_dir2_sf_put_ftype(mp, sfep, args->filetype); in xfs_dir2_sf_addname_hard()
724 uint8_t filetype; in xfs_dir2_sf_verify() local
784 filetype = xfs_dir2_sf_get_ftype(mp, sfep); in xfs_dir2_sf_verify()
785 if (filetype >= XFS_DIR3_FT_MAX) in xfs_dir2_sf_verify()
889 args->filetype = XFS_DIR3_FT_DIR; in xfs_dir2_sf_lookup()
899 args->filetype = XFS_DIR3_FT_DIR; in xfs_dir2_sf_lookup()
[all …]
Dxfs_dir2.c29 * Convert inode mode to directory entry filetype
283 args->filetype = name->type; in xfs_dir_createname()
379 args->filetype = name->type; in xfs_dir_lookup()
451 args->filetype = name->type; in xfs_dir_removename()
512 args->filetype = name->type; in xfs_dir_replace()
Dxfs_dir2.h27 * Convert inode mode to directory entry filetype
246 unsigned char xfs_dir3_get_dtype(struct xfs_mount *mp, uint8_t filetype);
/kernel/linux/linux-6.6/usr/
Dgen_initramfs.sh44 filetype() { function
85 # <filetype> <name> <path to file> <octal mode> <uid> <gid>
95 local ftype=$(filetype "${location}")
/kernel/linux/linux-5.10/usr/
Dgen_initramfs.sh43 filetype() { function
84 # <filetype> <name> <path to file> <octal mode> <uid> <gid>
94 local ftype=$(filetype "${location}")
/kernel/linux/linux-5.10/fs/xfs/libxfs/
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 in xfs_dir2_block_sfsize()
487 xfs_dir2_sf_put_ftype(mp, sfep, args->filetype); in xfs_dir2_sf_addname_easy()
577 xfs_dir2_sf_put_ftype(mp, sfep, args->filetype); in xfs_dir2_sf_addname_hard()
724 uint8_t filetype; in xfs_dir2_sf_verify() local
784 filetype = xfs_dir2_sf_get_ftype(mp, sfep); in xfs_dir2_sf_verify()
785 if (filetype >= XFS_DIR3_FT_MAX) in xfs_dir2_sf_verify()
892 args->filetype = XFS_DIR3_FT_DIR; in xfs_dir2_sf_lookup()
902 args->filetype = XFS_DIR3_FT_DIR; in xfs_dir2_sf_lookup()
[all …]
Dxfs_dir2.c25 * Convert inode mode to directory entry filetype
270 args->filetype = name->type; in xfs_dir_createname()
366 args->filetype = name->type; in xfs_dir_lookup()
438 args->filetype = name->type; in xfs_dir_removename()
499 args->filetype = name->type; in xfs_dir_replace()
Dxfs_dir2.h27 * Convert inode mode to directory entry filetype
246 unsigned char xfs_dir3_get_dtype(struct xfs_mount *mp, uint8_t filetype);
/kernel/liteos_a/kernel/extended/plimit/
Dlos_devicelimit.c202 ProcDevLimit *devParentLimit, INT32 filetype) in DealItemAllAccess() argument
204 switch (filetype) { in DealItemAllAccess()
420 STATIC UINT32 DevLimitUpdateAccess(ProcLimitSet *procLimitSet, const CHAR *buf, INT32 filetype) in DevLimitUpdateAccess() argument
436 ret = DealItemAllAccess(procLimitSet, devLimit, devParentLimit, filetype); in DevLimitUpdateAccess()
440 switch (filetype) { in DevLimitUpdateAccess()
/kernel/linux/linux-6.6/drivers/crypto/intel/qat/qat_common/
Dicp_qat_hw.h366 algo, depth, filetype) \ argument
375 (((filetype) & QAT_COMPRESSION_FILE_TYPE_MASK) << \
/kernel/linux/linux-6.6/include/linux/
Dfs_types.h71 extern unsigned char fs_ftype_to_dtype(unsigned int filetype);
/kernel/linux/linux-5.10/include/linux/
Dfs_types.h71 extern unsigned char fs_ftype_to_dtype(unsigned int filetype);
/kernel/linux/linux-5.10/fs/udf/
Dinode.c1454 if (fe->icbTag.fileType != ICBTAG_FILE_TYPE_DIRECTORY && in udf_read_inode()
1457 else if (fe->icbTag.fileType == ICBTAG_FILE_TYPE_DIRECTORY && in udf_read_inode()
1542 switch (fe->icbTag.fileType) { in udf_read_inode()
1590 inode->i_ino, fe->icbTag.fileType); in udf_read_inode()
1842 fe->icbTag.fileType = ICBTAG_FILE_TYPE_USE; in udf_update_inode()
1844 fe->icbTag.fileType = ICBTAG_FILE_TYPE_DIRECTORY; in udf_update_inode()
1846 fe->icbTag.fileType = ICBTAG_FILE_TYPE_REGULAR; in udf_update_inode()
1848 fe->icbTag.fileType = ICBTAG_FILE_TYPE_SYMLINK; in udf_update_inode()
1850 fe->icbTag.fileType = ICBTAG_FILE_TYPE_BLOCK; in udf_update_inode()
1852 fe->icbTag.fileType = ICBTAG_FILE_TYPE_CHAR; in udf_update_inode()
[all …]

1234