Home
last modified time | relevance | path

Searched refs:d_type (Results 1 – 25 of 88) sorted by relevance

1234

/linux/fs/vboxsf/
H A Ddir.c61 unsigned int d_type; in vboxsf_get_d_type() local
65 d_type = DT_FIFO; in vboxsf_get_d_type()
68 d_type = DT_CHR; in vboxsf_get_d_type()
71 d_type = DT_DIR; in vboxsf_get_d_type()
74 d_type = DT_BLK; in vboxsf_get_d_type()
77 d_type = DT_REG; in vboxsf_get_d_type()
80 d_type = DT_LNK; in vboxsf_get_d_type()
83 d_type = DT_SOCK; in vboxsf_get_d_type()
86 d_type = DT_WHT; in vboxsf_get_d_type()
89 d_type = DT_UNKNOWN; in vboxsf_get_d_type()
[all …]
/linux/tools/testing/selftests/proc/
H A Dproc-subset-pid.c91 assert(de->d_type == DT_DIR); in main()
95 assert(de->d_type == DT_DIR); in main()
99 assert(de->d_type == DT_LNK); in main()
103 assert(de->d_type == DT_LNK); in main()
109 assert(de->d_type == DT_DIR); in main()
H A Dread.c82 assert(de->d_type == DT_DIR); in f()
86 assert(de->d_type == DT_DIR); in f()
93 switch (de->d_type) { in f()
H A Dfd-001-lookup.c116 assert(de->d_type == DT_DIR); in main()
120 assert(de->d_type == DT_DIR); in main()
129 assert(de->d_type == DT_LNK); in main()
H A Dfd-003-kthread.c106 assert(de->d_type == DT_DIR); in test_readdir()
110 assert(de->d_type == DT_DIR); in test_readdir()
/linux/fs/
H A Dreaddir.c182 loff_t offset, u64 ino, unsigned int d_type) in fillonedir() argument
260 loff_t offset, u64 ino, unsigned int d_type) in filldir() argument
269 unsigned int flags = d_type; in filldir()
272 d_type &= S_DT_MASK; in filldir()
297 unsafe_put_user(d_type, (char __user *) dirent + reclen - 1, efault_end); in filldir()
350 loff_t offset, u64 ino, unsigned int d_type) in filldir64() argument
358 unsigned int flags = d_type; in filldir64()
361 d_type &= S_DT_MASK; in filldir64()
381 unsafe_put_user(d_type, &dirent->d_type, efault_end); in filldir64()
444 unsigned int d_type) in compat_fillonedir() argument
[all …]
/linux/tools/lib/api/
H A Dio_dir.h48 unsigned char d_type; /* File type */ member
91 if (dent->d_type == DT_UNKNOWN) { in io_dir__is_dir()
98 dent->d_type = DT_DIR; in io_dir__is_dir()
102 return dent->d_type == DT_DIR; in io_dir__is_dir()
/linux/tools/perf/util/
H A Dgenelf.c102 d->d_type = ELF_T_BYTE; in jit_add_eh_frame_info()
136 d->d_type = ELF_T_BYTE; in jit_add_eh_frame_info()
258 d->d_type = ELF_T_BYTE; in jit_write_elf()
308 d->d_type = ELF_T_BYTE; in jit_write_elf()
344 d->d_type = ELF_T_SYM; in jit_write_elf()
389 d->d_type = ELF_T_BYTE; in jit_write_elf()
433 d->d_type = ELF_T_BYTE; in jit_write_elf()
H A Dtracepoint.h13 if (evt_dirent->d_type == DT_DIR && \
20 if (sys_dirent->d_type == DT_DIR && \
H A Dgenelf_debug.c528 d->d_type = ELF_T_BYTE; in jit_add_debug_info()
562 d->d_type = ELF_T_BYTE; in jit_add_debug_info()
596 d->d_type = ELF_T_BYTE; in jit_add_debug_info()
/linux/fs/overlayfs/
H A Dreaddir.c179 u64 ino, unsigned int d_type) in ovl_cache_entry_new() argument
190 p->type = d_type; in ovl_cache_entry_new()
199 p->check_xwhiteout = rdd->in_xwhiteouts_dir && d_type == DT_REG; in ovl_cache_entry_new()
209 if (d_type == DT_CHR) { in ovl_cache_entry_new()
221 unsigned int d_type) in ovl_cache_entry_add_rb() argument
230 p = ovl_cache_entry_new(rdd, name, len, c_name, c_len, ino, d_type); in ovl_cache_entry_add_rb()
247 loff_t offset, u64 ino, unsigned int d_type) in ovl_fill_lowest() argument
257 ino, d_type); in ovl_fill_lowest()
312 unsigned int d_type) in ovl_fill_merge() argument
336 ret = ovl_cache_entry_add_rb(rdd, name, namelen, c_name, c_len, ino, d_type); in ovl_fill_merge()
[all …]
/linux/fs/xfs/libxfs/
H A Dxfs_dquot_buf.c67 if (ddq->d_type & ~XFS_DQTYPE_ANY) in xfs_dquot_verify()
69 ddq_type = ddq->d_type & XFS_DQTYPE_REC_MASK; in xfs_dquot_verify()
75 if ((ddq->d_type & XFS_DQTYPE_BIGTIME) && in xfs_dquot_verify()
79 if ((ddq->d_type & XFS_DQTYPE_BIGTIME) && !ddq->d_id) in xfs_dquot_verify()
137 dqb->dd_diskdq.d_type = type; in xfs_dqblk_repair()
310 if (t != 0 && (ddq->d_type & XFS_DQTYPE_BIGTIME)) in xfs_dquot_from_disk_ts()
/linux/fs/erofs/
H A Dnamei.c162 unsigned int *d_type) in erofs_namei() argument
187 *d_type = de->file_type; in erofs_namei()
198 unsigned int d_type; in erofs_lookup() local
206 err = erofs_namei(dir, &dentry->d_name, &nid, &d_type); in erofs_lookup()
H A Ddir.c17 unsigned char d_type = fs_ftype_to_dtype(de->file_type); in erofs_fill_dentries() local
39 le64_to_cpu(de->nid)), d_type)) in erofs_fill_dentries()
/linux/fs/ufs/
H A Dutil.h160 de->d_u.d_44.d_type = DT_SOCK; in ufs_set_de_type()
163 de->d_u.d_44.d_type = DT_LNK; in ufs_set_de_type()
166 de->d_u.d_44.d_type = DT_REG; in ufs_set_de_type()
169 de->d_u.d_44.d_type = DT_BLK; in ufs_set_de_type()
172 de->d_u.d_44.d_type = DT_DIR; in ufs_set_de_type()
175 de->d_u.d_44.d_type = DT_CHR; in ufs_set_de_type()
178 de->d_u.d_44.d_type = DT_FIFO; in ufs_set_de_type()
181 de->d_u.d_44.d_type = DT_UNKNOWN; in ufs_set_de_type()
H A Ddir.c454 unsigned char d_type = DT_UNKNOWN; in ufs_readdir() local
461 d_type = de->d_u.d_44.d_type; in ufs_readdir()
466 d_type)) { in ufs_readdir()
/linux/tools/perf/ui/browsers/
H A Dscripts.c196 if (lang_dirent->d_type != DT_DIR && in find_scripts()
197 (lang_dirent->d_type == DT_UNKNOWN && in find_scripts()
221 if (script_dirent->d_type == DT_DIR) in find_scripts()
223 if (script_dirent->d_type == DT_UNKNOWN && in find_scripts()
/linux/fs/xfs/
H A Dxfs_dquot_item_recover.c43 type = recddq->d_type & XFS_DQTYPE_REC_MASK; in xlog_recover_dquot_ra_pass2()
96 type = recddq->d_type & XFS_DQTYPE_REC_MASK; in xlog_recover_dquot_commit_pass2()
/linux/fs/xfs/scrub/
H A Dquota_repair.c283 if (ddq->d_type & XFS_DQTYPE_BIGTIME) in xrep_quota_fix_timer()
328 if ((ddq->d_type & XFS_DQTYPE_REC_MASK) != dqtype || in xrep_quota_block()
348 ddq->d_type = dqtype; in xrep_quota_block()
352 ddq->d_type |= XFS_DQTYPE_BIGTIME; in xrep_quota_block()
/linux/drivers/misc/genwqe/
H A Dcard_utils.c833 u32 eevptr_addr, l_addr, d_len, d_type; in genwqe_ffdc_buff_size() local
852 d_type = (val & 0x0000008000000000ull) >> 36; in genwqe_ffdc_buff_size()
854 if (d_type) { /* repeat */ in genwqe_ffdc_buff_size()
892 u32 eevptr_addr, l_addr, d_addr, d_len, d_type; in genwqe_ffdc_buff_read() local
907 d_type = (e & 0x0000008000000000ull) >> 36; /* 39 */ in genwqe_ffdc_buff_read()
910 if (d_type) { in genwqe_ffdc_buff_read()
/linux/include/linux/
H A Ddirent.h9 unsigned char d_type; member
/linux/tools/perf/tests/
H A Dtests-scripts.c250 if (ent->d_type != DT_DIR) { in append_scripts_in_dir()
253 if (ent->d_type != DT_UNKNOWN) in append_scripts_in_dir()
/linux/fs/omfs/
H A Ddir.c338 unsigned char d_type; in omfs_fill_chain() local
359 d_type = (oi->i_type == OMFS_DIR) ? DT_DIR : DT_REG; in omfs_fill_chain()
363 self, d_type)) { in omfs_fill_chain()
/linux/tools/testing/selftests/powerpc/dscr/
H A Ddscr_sysfs_test.c45 if (!(dp->d_type & DT_DIR)) in check_all_cpu_dscr_defaults()
/linux/tools/perf/trace/beauty/include/uapi/linux/
H A Dfcntl.h90 __u16 d_type; /* F_RDLCK, F_WRLCK, F_UNLCK */ member

1234