HomeSort by relevance Sort by last modified time
    Searched refs:infile (Results 51 - 75 of 267) sorted by null

1 23 4 5 6 7 8 91011

  /external/chromium_org/tools/generate_stubs/
generate_stubs_unittest.py 74 infile = StringIO.StringIO()
75 signatures = gs.ParseSignatures(infile)
80 infile = StringIO.StringIO(file_contents)
81 signatures = gs.ParseSignatures(infile)
94 infile = StringIO.StringIO(file_contents)
95 signatures = gs.ParseSignatures(infile)
108 infile = StringIO.StringIO(i)
109 self.assertRaises(gs.BadSignatureError, gs.ParseSignatures, infile)
125 infile = StringIO.StringIO(file_contents)
126 signatures = gs.ParseSignatures(infile)
    [all...]
  /external/jhead/
jpgfile.c 129 int ReadJpegSections (FILE * infile, ReadMode_t ReadMode)
134 a = fgetc(infile);
136 if (a != 0xff || fgetc(infile) != M_SOI){
148 marker = fgetc(infile);
159 Sections[SectionsRead].Offset = ftell(infile);
162 lh = fgetc(infile);
163 ll = fgetc(infile);
187 got = fread(Data+2, 1, itemlen-2, infile); // Read the whole section.
203 cp = ftell(infile);
204 fseek(infile, 0, SEEK_END)
526 FILE * infile; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
sess_id.c 97 char *infile=NULL,*outfile=NULL,*context=NULL; local
128 infile= *(++argv);
165 x=load_sess_id(infile,informat);
281 static SSL_SESSION *load_sess_id(char *infile, int format)
293 if (infile == NULL)
297 if (BIO_read_filename(in,infile) <= 0)
299 perror(infile);
pkey.c 72 char **args, *infile = NULL, *outfile = NULL; local
140 infile = *args;
231 pkey = load_pubkey(bio_err, infile, informat, 1,
234 pkey = load_key(bio_err, infile, informat, 1,
crl2p7.c 91 char *infile,*outfile,*prog,*certfile; local
106 infile=NULL;
129 infile= *(++argv);
159 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
184 if (infile == NULL)
188 if (BIO_read_filename(in,infile) <= 0)
190 perror(infile);
  /external/openssl/apps/
sess_id.c 97 char *infile=NULL,*outfile=NULL,*context=NULL; local
128 infile= *(++argv);
165 x=load_sess_id(infile,informat);
281 static SSL_SESSION *load_sess_id(char *infile, int format)
293 if (infile == NULL)
297 if (BIO_read_filename(in,infile) <= 0)
299 perror(infile);
pkey.c 72 char **args, *infile = NULL, *outfile = NULL; local
140 infile = *args;
231 pkey = load_pubkey(bio_err, infile, informat, 1,
234 pkey = load_key(bio_err, infile, informat, 1,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pipes.py 45 sts = t.copy(infile, outfile)
46 If infile or outfile are the empty string, standard input is read or
182 def copy(self, infile, outfile):
183 return os.system(self.makepipeline(infile, outfile))
185 def makepipeline(self, infile, outfile):
186 cmd = makepipeline(infile, self.steps, outfile)
193 def makepipeline(infile, steps, outfile):
209 if kind[0] == 'f' and not infile:
211 list[0][0] = infile
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
cfmfile.py 164 infile = open(self.path, "rb")
166 infile.seek(0, 2)
167 self.length = infile.tell()
170 infile.seek(self.offset)
182 outfile.write(infile.read(BUFSIZE))
185 outfile.write(infile.read(l))
187 infile.close()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pipes.py 45 sts = t.copy(infile, outfile)
46 If infile or outfile are the empty string, standard input is read or
182 def copy(self, infile, outfile):
183 return os.system(self.makepipeline(infile, outfile))
185 def makepipeline(self, infile, outfile):
186 cmd = makepipeline(infile, self.steps, outfile)
193 def makepipeline(infile, steps, outfile):
209 if kind[0] == 'f' and not infile:
211 list[0][0] = 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/chromium_org/tools/win/link_limiter/
build_link_limiter.py 41 def build(infile):
46 cpptime = os.path.getmtime(infile)
52 % (os.path.join('..', infile), outfile), BUILD_DIR)
  /external/jpeg/
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...]
  /external/nanopb-c/tests/site_scons/
site_init.py 18 infile = open(str(source[1]))
20 infile = None
32 stdin = infile,
  /external/qemu/distrib/jpeg-6b/
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...]
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
simple_encoder.c 114 "Usage: %s <codec> <width> <height> <infile> <outfile> "
150 FILE *infile = NULL; local
227 if (!(infile = fopen(infile_arg, "rb")))
233 while (vpx_img_read(&raw, infile)) {
242 fclose(infile);
vp8cx_set_ref.c 63 fprintf(stderr, "Usage: %s <width> <height> <infile> <outfile> <frame>\n",
96 FILE *infile = NULL; local
157 if (!(infile = fopen(argv[3], "rb")))
163 while (vpx_img_read(&raw, infile)) {
177 fclose(infile);
  /external/libvpx/libvpx/examples/
simple_encoder.c 114 "Usage: %s <codec> <width> <height> <infile> <outfile> "
150 FILE *infile = NULL; local
227 if (!(infile = fopen(infile_arg, "rb")))
233 while (vpx_img_read(&raw, infile)) {
242 fclose(infile);
vp8cx_set_ref.c 63 fprintf(stderr, "Usage: %s <width> <height> <infile> <outfile> <frame>\n",
96 FILE *infile = NULL; local
157 if (!(infile = fopen(argv[3], "rb")))
163 while (vpx_img_read(&raw, infile)) {
177 fclose(infile);
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 93 -phones <infile>,
94 -POS <infile>,
95 -accents <infile>,
96 -pb_strengths <infile> read symbol tables from <file> and shift them into
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
simple_encoder.c 114 "Usage: %s <codec> <width> <height> <infile> <outfile> "
150 FILE *infile = NULL; local
227 if (!(infile = fopen(infile_arg, "rb")))
233 while (vpx_img_read(&raw, infile)) {
242 fclose(infile);
vp8cx_set_ref.c 63 fprintf(stderr, "Usage: %s <width> <height> <infile> <outfile> <frame>\n",
96 FILE *infile = NULL; local
157 if (!(infile = fopen(argv[3], "rb")))
163 while (vpx_img_read(&raw, infile)) {
177 fclose(infile);
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/inc/
omx_video_common.h 90 FILE *infile; member in struct:venc_debug_cap
  /external/chromium_org/tools/grit/grit/tool/
buildinfo.py 67 for infile in res_tree.GetInputFiles():
68 print 'input|%s' % os.path.normpath(infile)
  /external/bison/build-aux/
missing 294 infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
300 }' $infile`
302 test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info

Completed in 743 milliseconds

1 23 4 5 6 7 8 91011