HomeSort by relevance Sort by last modified time
    Searched full:infile (Results 1 - 25 of 195) sorted by null

1 2 3 4 5 6 7 8

  /external/bzip2/
format.pl 24 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
    [all...]
  /external/bluetooth/glib/tests/
unicode-caseconv.c 12 FILE *infile; local
28 infile = fopen (filename, "r");
29 if (!infile)
35 while (fgets (buffer, sizeof(buffer), infile))
93 fclose (infile);
98 infile = fopen (filename, "r");
99 if (!infile)
106 while (fgets (buffer, sizeof(buffer), infile))
128 fclose (infile);
  /external/jpeg/
rdcolmap.c 79 read_gif_map (j_decompress_ptr cinfo, FILE * infile)
88 if ((header[i] = getc(infile)) == EOF)
104 R = getc(infile);
105 G = getc(infile);
106 B = getc(infile);
121 pbm_getc (FILE * infile)
127 ch = getc(infile);
130 ch = getc(infile);
138 read_pbm_integer (j_decompress_ptr cinfo, FILE * infile)
149 ch = pbm_getc(infile);
    [all...]
rdppm.c 84 pbm_getc (FILE * infile)
90 ch = getc(infile);
93 ch = getc(infile);
101 read_pbm_integer (j_compress_ptr cinfo, FILE * infile)
112 ch = pbm_getc(infile);
121 while ((ch = pbm_getc(infile)) >= '0' && ch <= '9') {
145 FILE * infile = source->pub.input_file; local
152 *ptr++ = rescale[read_pbm_integer(cinfo, infile)];
163 FILE * infile = source->pub.input_file; local
170 *ptr++ = rescale[read_pbm_integer(cinfo, infile)];
    [all...]
  /build/tools/soslim/
main.c 42 char *infile = NULL; local
81 infile = argv[first++];
83 INFO("Opening %s...\n", infile);
84 elf_fd = open(infile, O_RDONLY);
86 infile,
89 INFO("Calling elf_begin(%s)...\n", infile);
97 infile); local
103 infile);
109 infile,
113 print_dynamic_symbols(elf, infile);
140 infile); local
163 infile, strerror(errno), errno); local
    [all...]
  /external/dropbear/
dropbearconvert.c 33 static int do_convert(int intype, const char* infile, int outtype,
62 const char* infile; local
99 infile = argv[3];
102 return do_convert(intype, infile, outtype, outfile);
110 static int do_convert(int intype, const char* infile, int outtype,
117 key = import_read(infile, NULL, intype);
120 infile);
  /system/core/libacc/tests/
main.cpp 92 const char* inFile = NULL;
111 } else if (inFile == NULL) {
112 inFile = arg;
118 if (! inFile) {
123 if (inFile) {
124 in = fopen(inFile, "r");
126 fprintf(stderr, "Could not open input file %s\n", inFile);
137 fprintf(stderr, "Could not read all of file %s\n", inFile);
196 codeArgv[0] = (char*) (inFile ? inFile : "stdin")
    [all...]
  /build/tools/zipalign/
README.txt 3 usage: zipalign [-f] [-v] <align> infile.zip outfile.zip
4 zipalign -c [-v] <align> infile.zip
10 infile.zip is an existing Zip archive
  /frameworks/base/tests/CoreTests/android/core/
GZIPStreamTest.java 48 FileInputStream inFile = new FileInputStream("/tmp/foo.gz");
49 int inputLength = inFile.available();
51 if (inFile.read(zipData) != inputLength)
53 inFile.close();
ZipStreamTest.java 48 FileInputStream inFile = new FileInputStream("/tmp/foo.zip");
49 int inputLength = inFile.available();
51 if (inFile.read(zipData) != inputLength)
53 inFile.close();
  /external/openssl/apps/
nseq.c 72 char **args, *infile = NULL, *outfile = NULL; local
87 infile = *args;
108 if (infile) {
109 if (!(in = BIO_new_file (infile, "r"))) {
111 "Can't open input file %s\n", infile);
139 BIO_printf (bio_err, "Error reading certs file %s\n", infile);
149 BIO_printf (bio_err, "Error reading sequence file %s\n", infile);
crl.c 109 char *infile=NULL,*outfile=NULL; local
170 infile= *(++argv);
236 x=load_crl(infile,informat);
405 static X509_CRL *load_crl(char *infile, int format)
417 if (infile == NULL)
421 if (BIO_read_filename(in,infile) <= 0)
423 perror(infile);
crl2p7.c 92 char *infile,*outfile,*prog,*certfile; local
107 infile=NULL;
130 infile= *(++argv);
160 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
185 if (infile == NULL)
189 if (BIO_read_filename(in,infile) <= 0)
191 perror(infile);
dh.c 98 char *infile,*outfile,*prog; local
115 infile=NULL;
138 infile= *(++argv);
173 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
203 if (infile == NULL)
207 if (BIO_read_filename(in,infile) <= 0)
209 perror(infile);
ec.c 99 char *infile, *outfile, *prog, *engine; local
117 infile = NULL;
140 infile= *(++argv);
213 BIO_printf(bio_err, "%s [options] <infile >outfile\n", prog);
274 if (infile == NULL)
278 if (BIO_read_filename(in, infile) <= 0)
280 perror(infile);
pkcs7.c 92 char *infile,*outfile,*prog; local
108 infile=NULL;
131 infile= *(++argv);
164 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
194 if (infile == NULL)
198 if (BIO_read_filename(in,infile) <= 0)
201 perror(infile);
sess_id.c 96 char *infile=NULL,*outfile=NULL,*context=NULL; local
127 infile= *(++argv);
164 x=load_sess_id(infile,informat);
279 static SSL_SESSION *load_sess_id(char *infile, int format)
291 if (infile == NULL)
295 if (BIO_read_filename(in,infile) <= 0)
297 perror(infile);
  /development/tools/yuv420sp2rgb/
yuv420sp2rgb.c 191 static void convert(const char *infile,
229 INFO("Opening input file %s\n", infile);
230 ifd = open(infile, O_RDONLY);
232 infile, strerror(errno), errno);
239 INFO("Memory-mapping input file %s\n", infile);
272 char *infile, *outfile, *type; local
311 infile = argv[first];
313 INFO("input file: [%s]\n", infile);
332 convert(infile, outfile,
  /external/dropbear/libtomcrypt/demos/
encrypt.c 18 printf("Usage: %s [-d](ecrypt) cipher infile outfile\nCiphers:\n", name);
103 char *infile, *outfile, *cipher; local
117 infile = argv[3];
122 infile = argv[2];
127 fdin = fopen(infile,"rb");
  /bootable/recovery/tools/ota/
convert-to-bmp.py 10 infile = sys.argv[1] variable
16 im = Image.open(infile)
  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterInputStreamTest.java 77 InputStream infile = Support_Resources.getStream("hyts_constru_OD.txt"); local
78 InflaterInputStream inflatIP = new InflaterInputStream(infile);
97 InputStream infile = Support_Resources.getStream("hyts_constru_OD.txt"); local
99 InflaterInputStream inflatIP = new InflaterInputStream(infile, inflate);
119 InputStream infile = Support_Resources local
122 InflaterInputStream inflatIP = new InflaterInputStream(infile, inflate,
133 inflatIP = new InflaterInputStream(infile, inflate, -1);
188 InputStream infile = Support_Resources.getStream("hyts_constru_OD.txt"); local
190 InflaterInputStream inflatIP = new InflaterInputStream(infile, inflate);
442 InputStream infile = Support_Resources.getStream("hyts_constru_OD.txt") local
    [all...]
  /external/openssl/crypto/rc4/
rc4.c 77 char *infile=NULL,*outfile=NULL,*keystr=NULL; local
91 infile= *(++argv);
121 if (infile == NULL)
125 in=fopen(infile,"r");
  /external/webkit/WebCore/WebCore.gyp/scripts/
action_csspropertynames.py 113 # first listed inFile, but in the output directory.
120 inFile = open(inFilePath)
121 for line in inFile:
131 inFile.close()
  /external/zlib/
minigzip.c 227 char *infile, *outfile; local
235 infile = file;
240 infile = buf;
241 strcat(infile, GZ_SUFFIX);
243 in = gzopen(infile, "rb");
245 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
256 unlink(infile);
  /external/icu4c/test/iotest/
trnstst.c 120 FILE *infile; local
186 infile = fopen(STANDARD_TEST_FILE, "rb");
187 if(infile == NULL)
193 len=fread(ubuf, sizeof(UChar), u_strlen(compare), infile);
215 fclose(infile);

Completed in 896 milliseconds

1 2 3 4 5 6 7 8