| /Linux-v5.15/tools/testing/selftests/cpufreq/ | 
| D | special-tests.sh | 88 	local filepath="$CPUROOT/$1/cpufreq"98 	local freqs=$(cat $filepath/scaling_available_frequencies)
 99 	local oldfreq=$(cat $filepath/scaling_min_freq)
 105 			echo $freq > $filepath/scaling_min_freq
 110 	echo $oldfreq > $filepath/scaling_min_freq
 
 | 
| D | governor.sh | 87 	local filepath=$CPUFREQROOT/$1/scaling_available_governors90 	local found=$(cat $filepath | grep $2 | wc -l)
 126 	local filepath=$CPUFREQROOT/$2/scaling_available_governors
 129 	if [ ! -f $filepath ]; then
 135 	local governors=$(cat $filepath)
 
 | 
| D | cpufreq.sh | 137 	local filepath="$CPUFREQROOT/$1"149 	local freqs=$(cat $filepath/scaling_available_frequencies)
 
 | 
| /Linux-v5.15/tools/thermal/tmon/ | 
| D | sysfs.c | 36 	char filepath[256];  in sysfs_set_ulong()  local38 	snprintf(filepath, 256, "%s/%s", path, filename);  in sysfs_set_ulong()
 40 	fd = fopen(filepath, "w");  in sysfs_set_ulong()
 42 		syslog(LOG_ERR, "Err: open %s: %s\n", __func__, filepath);  in sysfs_set_ulong()
 60 	char filepath[256];  in sysfs_get_ulong()  local
 62 	snprintf(filepath, 256, "%s/%s", path, filename);  in sysfs_get_ulong()
 64 	fd = fopen(filepath, "r");  in sysfs_get_ulong()
 66 		syslog(LOG_ERR, "Err: open %s: %s\n", __func__, filepath);  in sysfs_get_ulong()
 79 	char filepath[256];  in sysfs_get_string()  local
 81 	snprintf(filepath, 256, "%s/%s", path, filename);  in sysfs_get_string()
 [all …]
 
 | 
| /Linux-v5.15/scripts/ | 
| D | get_abi.pl | 84 	$data{$nametag}->{filepath} = $file;165 						$data{$what}->{filepath} = $file;
 169 							$data{$what}->{filepath} .= " " . $file;
 303 		my @filepath = split / /, $data{$what}->{filepath};
 349 		for (my $i = 0; $i < scalar(@filepath); $i++) {
 350 			my $path = $filepath[$i];
 493 		my $file = $data{$what}->{filepath};
 
 | 
| /Linux-v5.15/tools/usb/usbip/libsrc/ | 
| D | usbip_device_driver.c | 66 	char filepath[SYSFS_PATH_MAX];  in read_usb_vudc_device()  local76 	snprintf(filepath, SYSFS_PATH_MAX, "%s/%s",  in read_usb_vudc_device()
 78 	fd = fopen(filepath, "r");  in read_usb_vudc_device()
 
 | 
| /Linux-v5.15/drivers/net/wireless/ath/ath11k/ | 
| D | core.c | 478 	char *filename, filepath[100];  in ath11k_core_fetch_board_data_api_n()  local495 					 filepath, sizeof(filepath));  in ath11k_core_fetch_board_data_api_n()
 501 			   filepath, len);  in ath11k_core_fetch_board_data_api_n()
 516 			   filepath, len);  in ath11k_core_fetch_board_data_api_n()
 566 			   boardname, filepath);  in ath11k_core_fetch_board_data_api_n()
 
 | 
| /Linux-v5.15/tools/testing/selftests/bpf/ | 
| D | test_flow_dissector.c | 581 static void __attribute__((noreturn)) usage(const char *filepath)  in usage()  argument587 		filepath);  in usage()
 612 static int parse_protocol_family(const char *filepath, const char *optarg)  in parse_protocol_family()  argument
 619 	usage(filepath);  in parse_protocol_family()
 
 | 
| /Linux-v5.15/tools/testing/selftests/net/ | 
| D | udpgso_bench_rx.c | 287 static void usage(const char *filepath)  in usage()  argument291 	      filepath);  in usage()
 
 | 
| D | udpgso_bench_tx.c | 414 static void usage(const char *filepath)  in usage()  argument417 		    filepath);  in usage()
 
 | 
| D | msg_zerocopy.c | 694 static void usage(const char *filepath)  in usage()  argument696 	error(1, 0, "Usage: %s [options] <test>", filepath);  in usage()
 
 | 
| D | txtimestamp.c | 665 static void __attribute__((noreturn)) usage(const char *filepath)  in usage()  argument693 			filepath);  in usage()
 
 | 
| /Linux-v5.15/fs/ksmbd/ | 
| D | vfs.c | 1221 		char *filepath;  in ksmbd_vfs_kern_path()  local1225 		filepath = kstrdup(name, GFP_KERNEL);  in ksmbd_vfs_kern_path()
 1226 		if (!filepath)  in ksmbd_vfs_kern_path()
 1229 		path_len = strlen(filepath);  in ksmbd_vfs_kern_path()
 1236 			char *filename = filepath + path_len - remain_len;  in ksmbd_vfs_kern_path()
 1254 					      filepath,  in ksmbd_vfs_kern_path()
 1271 		kfree(filepath);  in ksmbd_vfs_kern_path()
 
 | 
| /Linux-v5.15/tools/bpf/bpftool/ | 
| D | prog.c | 620 	  char *filepath, bool opcodes, bool visual, bool linum)  in prog_dump()  argument665 	if (filepath) {  in prog_dump()
 666 		fd = open(filepath, O_WRONLY | O_CREAT | O_TRUNC, 0600);  in prog_dump()
 668 			p_err("can't open file %s: %s", filepath,  in prog_dump()
 795 	char *filepath = NULL;  in do_dump()  local
 840 		filepath = *argv;  in do_dump()
 891 		err = prog_dump(&info_linear->info, mode, filepath, opcodes,  in do_dump()
 
 |