Home
last modified time | relevance | path

Searched refs:infile (Results 1 – 11 of 11) sorted by relevance

/linux/tools/perf/util/
A Dlzma.c44 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()
106 fclose(infile); in lzma_decompress_to_file()
/linux/arch/arm/vdso/
A Dvdsomunge.c120 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/scripts/
A Dsyscalltbl.sh50 infile="$1"
55 grep -E "^[0-9]+[[:space:]]+$abis" "$infile" | {
60 echo "error: $infile: syscall table is not sorted or duplicates the same syscall number" >&2
A Dsyscallnr.sh54 infile="$1"
61 grep -E "^[0-9A-Fa-fXx]+[[:space:]]+$abis" "$infile" | sort -n | {
A Dsyscallhdr.sh65 infile="$1"
72 grep -E "^[0-9A-Fa-fXx]+[[:space:]]+$abis" "$infile" | {
A Dget_dvb_firmware869 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/scripts/kconfig/
A Dstreamline_config.pl117 open(my $infile, '-|', "$exec $file") || die "Failed to run $exec $file";
118 my @x = <$infile>;
119 close $infile;
301 open(my $infile, '<', $makefile) || die "Can't open $makefile";
302 while (<$infile>) {
349 close($infile);
/linux/tools/testing/selftests/bpf/
A Dtest_tc_tunnel.sh24 readonly infile="$(mktemp)"
52 dd if=/dev/urandom of="${infile}" bs="${datalen}" count=1 status=none
62 if [[ -f "${infile}" ]]; then
63 rm "${infile}"
78 ip netns exec "${ns1}" timeout 2 nc "${netcat_opt}" -w 1 "${addr2}" "${port}" < "${infile}"
87 insum=($(sha1sum ${infile}))
/linux/tools/testing/selftests/netfilter/
A Dipvs.sh43 readonly infile="$(mktemp)"
99 dd if=/dev/urandom of="${infile}" bs="${datalen}" count=1 status=none
111 if [ -f "${infile}" ]; then
112 rm "${infile}"
123 ip netns exec ns0 timeout 2 nc -w 1 ${vip_v4} ${port} < "${infile}"
128 cmp "$infile" "$outfile" 2>/dev/null
/linux/arch/mips/boot/
A Delf2ecoff.c278 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/Documentation/networking/
A Dsnmp_counter.rst1672 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…

Completed in 16 milliseconds