Searched refs:infile (Results 1 – 7 of 7) sorted by relevance
/Linux-v5.4/tools/perf/util/ |
D | lzma.c | 44 FILE *infile; in lzma_decompress_to_file() local 46 infile = fopen(input, "rb"); in lzma_decompress_to_file() 47 if (!infile) { in lzma_decompress_to_file() 66 if (strm.avail_in == 0 && !feof(infile)) { in lzma_decompress_to_file() 68 strm.avail_in = fread(buf_in, 1, sizeof(buf_in), infile); in lzma_decompress_to_file() 70 if (ferror(infile)) { in lzma_decompress_to_file() 75 if (feof(infile)) in lzma_decompress_to_file() 104 fclose(infile); in lzma_decompress_to_file()
|
/Linux-v5.4/arch/arm/vdso/ |
D | vdsomunge.c | 120 const char *infile; in main() local 135 infile = argv[1]; in main() 138 infd = open(infile, O_RDONLY); in main() 140 fail("Cannot open %s: %s\n", infile, strerror(errno)); in main() 143 fail("Failed stat for %s: %s\n", infile, strerror(errno)); in main() 147 fail("Failed to map %s: %s\n", infile, strerror(errno)); in main()
|
/Linux-v5.4/scripts/kconfig/ |
D | streamline_config.pl | 119 open(my $infile, '-|', "$exec $file") || die "Failed to run $exec $file"; 120 my @x = <$infile>; 121 close $infile; 301 open(my $infile, '<', $makefile) || die "Can't open $makefile"; 302 while (<$infile>) { 349 close($infile);
|
/Linux-v5.4/tools/testing/selftests/bpf/ |
D | test_tc_tunnel.sh | 24 readonly infile="$(mktemp)" 52 dd if=/dev/urandom of="${infile}" bs="${datalen}" count=1 status=none 62 if [[ -f "${infile}" ]]; then 63 rm "${infile}" 74 ip netns exec "${ns1}" timeout 2 nc "${netcat_opt}" -w 1 "${addr2}" "${port}" < "${infile}" 82 insum=($(sha1sum ${infile}))
|
/Linux-v5.4/scripts/ |
D | get_dvb_firmware | 869 my ($infile, $offset, $length, $outfile) = @_; 872 open INFILE, "<$infile"; 890 my ($FH, $infile) = @_; 893 open INFILE, "<$infile"; 903 my ($infile,$outfile) =@_; 905 open INFILE,"<$infile";
|
/Linux-v5.4/arch/mips/boot/ |
D | elf2ecoff.c | 278 int infile, outfile; in main() local 300 if ((infile = open(argv[1], O_RDONLY)) < 0) { in main() 307 i = read(infile, &ex, sizeof ex); in main() 329 ph = (Elf32_Phdr *) saveRead(infile, ex.e_phoff, in main() 335 sh = (Elf32_Shdr *) saveRead(infile, ex.e_shoff, in main() 598 copy(outfile, infile, ph[i].p_offset, in main()
|
/Linux-v5.4/Documentation/networking/ |
D | snmp_counter.rst | 1672 nstatuser@nstat-a:~$ tcprewrite --infile=/tmp/syn.pcap --outfile=/tmp/syn_fixcsum.pcap --fixcsum 1717 nstatuser@nstat-a:~$ tcprewrite --infile /tmp/paws_pre.pcap --outfile /tmp/paws.pcap --fixcsum 1784 …nstatuser@nstat-a:~$ tcprewrite --infile /tmp/seq_pre.pcap --outfile /tmp/seq.pcap -r 9001:9000 -r…
|