Home
last modified time | relevance | path

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

12

/OK3568_Linux_fs/u-boot/tools/dtoc/
H A Dtest_dtoc.py126 with open(output) as infile:
127 lines = infile.read().splitlines()
131 with open(output) as infile:
132 lines = infile.read().splitlines()
140 with open(output) as infile:
141 data = infile.read()
164 with open(output) as infile:
165 data = infile.read()
242 with open(output) as infile:
243 data = infile.read()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/util/
H 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()
/OK3568_Linux_fs/u-boot/scripts/
H A Dmailmapper130 infile = None variable
134 infile = open(map_file) variable
143 if infile:
144 for line in infile:
150 for line in infile:
152 infile.close()
H A Ddocproc.c443 static void parse_file(FILE *infile) in parse_file() argument
447 while (fgets(line, MAXLINESZ, infile)) { in parse_file()
503 FILE * infile; in main() local
517 infile = fopen(argv[2], "r"); in main()
518 if (infile == NULL) { in main()
540 parse_file(infile); in main()
543 fseek(infile, 0, SEEK_SET); in main()
552 parse_file(infile); in main()
571 parse_file(infile); in main()
577 fclose(infile); in main()
/OK3568_Linux_fs/kernel/arch/arm/vdso/
H 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()
/OK3568_Linux_fs/external/common_algorithm/video/occlusion_detect/test/
H A Docclusion_detection_test.c24 FILE *infile = fopen(yuv_input, "rb"); in main() local
25 if (!infile) { in main()
44 ret = fread(datain, 1, frame_size, infile); in main()
68 fclose(infile); in main()
/OK3568_Linux_fs/yocto/poky/meta/recipes-kernel/perf/perf/
H A Dsort-pmuevents.py23 infile = sys.argv[1] variable
26 if not os.path.exists(infile):
27 print( "ERROR. input file does not exist: %s" % infile )
31 print( "WARNING. output file will be overwritten: %s" % infile )
33 with open(infile, 'r') as file:
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/libee/libee/
H A Dezapi1.sh6 rm -f infile
7 ./genfile 100 > infile
14 rm -f infile
/OK3568_Linux_fs/kernel/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);
/OK3568_Linux_fs/buildroot/support/kconfig/
H A Dstreamline_config.pl119 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);
/OK3568_Linux_fs/u-boot/scripts/kconfig/
H A Dstreamline_config.pl118 open(my $infile, '-|', "$exec $file") || die "Failed to run $exec $file";
119 my @x = <$infile>;
120 close $infile;
300 open(my $infile, '<', $makefile) || die "Can't open $makefile";
301 while (<$infile>) {
348 close($infile);
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/
H 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}))
/OK3568_Linux_fs/kernel/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
/OK3568_Linux_fs/u-boot/tools/patman/
H A Dcommand.py43 def RunPipe(pipe_list, infile=None, outfile=None, argument
77 elif infile:
78 kwargs['stdin'] = open(infile, 'rb')
/OK3568_Linux_fs/buildroot/dl/stressapptest/git/
H A Dmissing297 infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
303 }' $infile`
305 test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
/OK3568_Linux_fs/buildroot/package/mkpimage/
H A Dmkpimage.c265 const char *outfile = NULL, *infile; in main() local
310 infile = argv[optind]; in main()
312 ret = stat(infile, &s); in main()
330 fd = open(infile, O_RDONLY); in main()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/
H A DCMakeLists.txt21 macro(EMBED_8100FILE prefix infile)
24 COMMAND ${OPTEE_TEST_ROOT_DIR}/scripts/file_to_c.py --inf ${infile}
27 DEPENDS ${OPTEE_TEST_ROOT_DIR}/scripts/file_to_c.py ${infile}
/OK3568_Linux_fs/kernel/scripts/
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";
/OK3568_Linux_fs/kernel/arch/mips/boot/
H 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()
/OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/efivar/efivar/
H A D0001-Fix-invalid-free-in-main.patch24 err(1, "Could not import data from \"%s\"", infile);
/OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/libtiff/tiff/
H A D0001-tiffcrop-subroutines-require-a-larger-buffer-fixes-2.patch92 + dump_info(dump->infile, dump->format, "loadImage",
368 dump_info (dump->infile, dump->format, "",
372 + dump_info(dump->infile, dump->format, "loadImage",
377 - dump_buffer(dump->infile, dump->format, 1, scanlinesize,
378 + dump_buffer(dump->infile, dump->format, 1, (uint32_t)scanlinesize,
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dcopy_buildsystem.py177 with open(lockedsigs, 'r') as infile:
181 for line in infile:
/OK3568_Linux_fs/buildroot/dl/sox/git/lpc10/
H A Df2c.h124 char *infile; member
/OK3568_Linux_fs/yocto/poky/scripts/contrib/
H A Dgraph-tool74 with open(args.infile, 'r') as f:
/OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/grub/files/
H A Ddeterminism.patch57 @@ -174,7 +174,7 @@ infile.close ()

12