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

123456

/external/vboot_reference/utility/include/
H A Dbmpblk_util.h10 int dump_bmpblock(const char *infile, int show_as_yaml,
/external/elfutils/src/tests/
H A Drun-strip-groups.sh45 infile=testfile58
46 outfile=$infile.stripped
47 dbgfile=$infile.debug
49 testfiles $infile
52 testrun ${abs_top_builddir}/src/strip -o $outfile -f $dbgfile $infile
53 testrun ${abs_top_builddir}/src/elflint -q $infile
H A Drun-strip-reloc.sh28 infile=$1
35 testrun ${abs_top_builddir}/src/strip -o $outfile1 -f $debugfile1 $infile ||
36 { echo "*** failure strip $infile"; status=1; }
39 -f $debugfile2 $infile ||
40 { echo "*** failure strip --reloc-debug-sections $infile"; status=1; }
44 { echo "*** failure readelf -a outfile1 $infile"; status=1; }
47 { echo "*** failure compare stripped files $infile"; status=1; }
54 { echo "*** failure --reloc-debug-sections not smaller $infile"; status=1; }
60 { echo "*** failure readelf -w debugfile1 $infile"; status=1; }
64 { echo "*** failure readelf -w debugfile2 $infile"; statu
[all...]
/external/jpeg/
H A Drdcolmap.c79 read_gif_map (j_decompress_ptr cinfo, FILE * infile) argument
88 if ((header[i] = getc(infile)) == EOF)
104 R = getc(infile);
105 G = getc(infile);
106 B = getc(infile);
121 pbm_getc (FILE * infile) argument
127 ch = getc(infile);
130 ch = getc(infile);
138 read_pbm_integer (j_decompress_ptr cinfo, FILE * infile) argument
149 ch = pbm_getc(infile);
171 read_ppm_map(j_decompress_ptr cinfo, FILE * infile) argument
231 read_color_map(j_decompress_ptr cinfo, FILE * infile) argument
[all...]
H A Dexample.c296 FILE * infile; /* source file */ local
306 if ((infile = fopen(filename, "rb")) == NULL) {
322 fclose(infile);
330 jpeg_stdio_src(&cinfo, infile);
399 fclose(infile);
H A Djdatasrc.c28 FILE * infile; /* source stream */ member in struct:__anon6481
95 nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE);
182 jpeg_stdio_src (j_decompress_ptr cinfo, FILE * infile) argument
209 src->infile = infile;
/external/pcre/dist/
H A Dperltest.pl50 $infile = "INFILE";
52 else { $infile = "STDIN"; }
68 printf " re> " if $infile eq "STDIN";
69 last if ! ($_ = <$infile>);
70 printf $outfile "$_" if $infile ne "STDIN";
77 printf " > " if $infile eq "STDIN";
78 last if ! ($_ = <$infile>);
79 printf $outfile "$_" if $infile ne "STDIN";
124 if ($infile != "STDIN")
128 last if ! ($_ = <$infile>);
[all...]
/external/vboot_reference/futility/
H A Dcmd_vbutil_key.c49 " --key <infile> RSA key file (.keyb or .pem)\n"
62 "Usage: " MYNAME " %s --unpack <infile>\n"
70 static int Pack(const char *infile, const char *outfile, uint64_t algorithm, argument
76 if (!infile || !outfile) {
81 pubkey = PublicKeyReadKeyb(infile, algorithm, version);
91 privkey = PrivateKeyReadPem(infile, algorithm);
101 VbExError("Unable to parse either .keyb or .pem from %s\n", infile);
106 static int Unpack(const char *infile, const char *outfile) argument
111 if (!infile) {
116 pubkey = PublicKeyRead(infile);
167 char *infile = NULL; local
[all...]
H A Dcmd_dump_kernel_config.c34 char *infile = NULL; local
68 infile = argv[optind];
75 if (!infile || !*infile) {
80 config = FindKernelConfig(infile, kernel_body_load_address);
H A Dcmd_create.c38 static char *infile, *outfile, *outext; variable
89 fp = fopen(infile, "rb");
91 fprintf(stderr, "Unable to open %s\n", infile);
99 fprintf(stderr, "Unable to read RSA key from %s\n", infile);
172 fp = fopen(infile, "rb");
174 fprintf(stderr, "Unable to open %s\n", infile);
182 fprintf(stderr, "Unable to read RSA key from %s\n", infile);
344 if (!infile) {
349 infile = argv[optind++];
362 s = infile; /* base
[all...]
H A Ddump_kernel_config_lib.c134 char *FindKernelConfig(const char *infile, uint64_t kernel_body_load_address) argument
138 int fd = open(infile, O_RDONLY | O_CLOEXEC | O_LARGEFILE);
140 VbExError("Cannot open %s\n", infile);
150 VbExError("Cannot stat %s\n", infile);
156 ctx = mtd_read_descriptor(fd, infile);
158 VbExError("Cannot read from MTD device %s\n", infile);
/external/libvpx/libvpx/
H A Divfdec.h21 int ivf_read_frame(FILE *infile, uint8_t **buffer,
H A Divfdec.c72 int ivf_read_frame(FILE *infile, uint8_t **buffer, argument
77 if (fread(raw_header, IVF_FRAME_HDR_SZ, 1, infile) != 1) {
78 if (!feof(infile))
101 if (!feof(infile)) {
102 if (fread(*buffer, 1, frame_size, infile) != frame_size) {
/external/bzip2/
H A Dformat.pl24 my $infile = shift;
25 # check infile exists
26 die "Can't find file \"$infile\""
27 unless -f $infile;
28 # check we can read infile
29 if (! -r $infile) {
30 die "Can't read input $infile\n";
32 # check we can open infile
33 open( INFILE,"<$infile" ) or
34 die "Can't input $infile
[all...]
/external/libpng/contrib/gregbook/
H A Dreadppm.c81 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight) argument
87 saved_infile = infile;
89 fgets(ppmline, 256, infile);
107 fgets(ppmline, 256, infile);
112 fgets(ppmline, 256, infile);
H A Dreadpng.h81 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight);
/external/selinux/libselinux/src/
H A Dmatchmediacon.c17 FILE *infile; local
21 if ((infile = fopen(path, "r")) == NULL)
23 while (!feof_unlocked(infile)) {
24 if (!fgets_unlocked(current_line, sizeof(current_line), infile)) {
50 fclose(infile);
/external/google-breakpad/src/common/tests/
H A Dfile_utils.cc45 int infile = HANDLE_EINTR(open(from_path, O_RDONLY)); local
46 if (infile < 0) {
54 if (IGNORE_EINTR(close(infile)) < 0) {
64 ssize_t bytes_read = HANDLE_EINTR(read(infile, buffer, sizeof(buffer)));
87 if (IGNORE_EINTR(close(infile)) == -1) {
/external/toybox/toys/posix/
H A Duniq.c63 FILE *infile = stdin, *outfile = stdout; local
67 if (toys.optc >= 1) infile = xfopen(toys.optargs[0], "r");
73 if (getdelim(&prevline, &prevsize, eol, infile) < 0)
76 while (getdelim(&thisline, &thissize, eol, infile) > 0) {
117 if (infile != stdin) fclose(infile);
/external/openssh/
H A Dfixprogs33 @infile=<IN>;
37 foreach (@infile) {
/external/parameter-framework/tools/xmlGenerator/
H A DhostConfig.py35 def configure(infile=sys.stdin, outfile=sys.stdout, serverPort=None, structPath=None):
41 dom = xml.dom.minidom.parse(infile)
/external/deqp/scripts/src_util/
H A Dpre_commit.py67 def check_external_guards (infile):
68 contents = infile.read()
71 croak(infile.name, lineno, "External include guard")
/external/zlib/src/examples/
H A Dgun.c82 int infile; member in struct:ind
103 ret = (int)read(me->infile, next, ret);
371 /* Decompress a gzip file from infile to outfile. strm is assumed to have been
383 local int gunpipe(z_stream *strm, int infile, int outfile) argument
392 ind.infile = infile;
551 int infile, outfile; local
556 infile = 0; /* stdin */
559 infile = open(inname, O_RDONLY, 0);
560 if (infile
[all...]
/external/libpcap/tests/
H A Dfiltertest.c165 char *infile; local
179 infile = NULL;
197 infile = optarg;
241 if (infile)
242 cmdbuf = read_infile(infile);
/external/libvorbis/vq/
H A Dhuffbuild.c64 char *infile; local
73 infile=strdup(argv[1]);
74 base=strdup(infile);
105 file=fopen(infile,"r");
107 fprintf(stderr,"Could not open file %s\n",infile);

Completed in 1241 milliseconds

123456