Searched refs:infile (Results 1 - 13 of 13) sorted by relevance

/linux-master/scripts/
H 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
H A Dsyscallnr.sh54 infile="$1"
61 grep -E "^[0-9A-Fa-fXx]+[[:space:]]+$abis" "$infile" | sort -n | {
H A Dsyscallhdr.sh65 infile="$1"
72 grep -E "^[0-9A-Fa-fXx]+[[:space:]]+$abis" "$infile" | {
H 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-master/tools/perf/util/
H A Dlzma.c44 FILE *infile; local
46 infile = fopen(input, "rb");
47 if (!infile) {
64 if (strm.avail_in == 0 && !feof(infile)) {
66 strm.avail_in = fread(buf_in, 1, sizeof(buf_in), infile);
68 if (ferror(infile)) {
73 if (feof(infile))
104 fclose(infile);
/linux-master/arch/arm/vdso/
H A Dvdsomunge.c120 const char *infile; local
133 fail("Usage: %s [infile] [outfile]\n", argv[0]);
135 infile = argv[1];
138 infd = open(infile, O_RDONLY);
140 fail("Cannot open %s: %s\n", infile, strerror(errno));
143 fail("Failed stat for %s: %s\n", infile, strerror(errno));
147 fail("Failed to map %s: %s\n", infile, strerror(errno));
/linux-master/drivers/accessibility/speakup/
H A Dutils.h27 FILE *infile; variable
38 infile = fopen(filename, "r");
39 if (infile == 0) {
H A Dmakemapdata.c23 while (fgets(buffer, sizeof(buffer)-1, infile)) {
44 fclose(infile);
45 infile = 0;
H A Dgenmap.c74 while (fgets(buffer, sizeof(buffer), infile)) {
120 fclose(infile);
/linux-master/tools/testing/selftests/netfilter/
H 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-master/tools/testing/selftests/bpf/
H A Dtest_tc_tunnel.sh25 readonly infile="$(mktemp)"
53 dd if=/dev/urandom of="${infile}" bs="${datalen}" count=1 status=none
63 if [[ -f "${infile}" ]]; then
64 rm "${infile}"
79 ip netns exec "${ns1}" timeout 2 nc "${netcat_opt}" -w 1 "${addr2}" "${port}" < "${infile}"
88 insum=($(sha1sum ${infile}))
/linux-master/scripts/kconfig/
H 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-master/arch/mips/boot/
H A Delf2ecoff.c278 int infile, outfile; local
300 if ((infile = open(argv[1], O_RDONLY)) < 0) {
307 i = read(infile, &ex, sizeof ex);
329 ph = (Elf32_Phdr *) saveRead(infile, ex.e_phoff,
335 sh = (Elf32_Shdr *) saveRead(infile, ex.e_shoff,
598 copy(outfile, infile, ph[i].p_offset,

Completed in 171 milliseconds