Home
last modified time | relevance | path

Searched refs:is_file (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.4/tools/perf/pmu-events/
Djevents.c927 int is_file = typeflag == FTW_F; in preprocess_arch_std_files() local
929 if (level == 1 && is_file && is_json_file(fpath)) in preprocess_arch_std_files()
940 int is_file = typeflag == FTW_F; in process_one_file() local
961 is_file ? "f" : is_dir ? "d" : "x", in process_one_file()
997 if (level == 1 && is_file) { in process_one_file()
1011 if (is_file) { in process_one_file()
1034 if (is_file) { in process_one_file()
/Linux-v5.4/scripts/
Dget_abi.pl63 $data{$nametag}->{is_file} = 1;
296 print "DESCRIPTION MISSING for $what\n\n" if (!$data{$what}->{is_file});
/Linux-v5.4/fs/f2fs/
Df2fs.h642 #define file_is_cold(inode) is_file(inode, FADVISE_COLD_BIT)
643 #define file_wrong_pino(inode) is_file(inode, FADVISE_LOST_PINO_BIT)
648 #define file_is_encrypt(inode) is_file(inode, FADVISE_ENCRYPT_BIT)
651 #define file_enc_name(inode) is_file(inode, FADVISE_ENC_NAME_BIT)
653 #define file_keep_isize(inode) is_file(inode, FADVISE_KEEP_SIZE_BIT)
655 #define file_is_hot(inode) is_file(inode, FADVISE_HOT_BIT)
658 #define file_is_verity(inode) is_file(inode, FADVISE_VERITY_BIT)
2690 static inline int is_file(struct inode *inode, int type) in is_file() function