/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenSection/ |
GenSection.c | 200 FILE *InFile;
216 InFile = fopen (InputFileName[0], "rb");
217 if (InFile == NULL) {
227 fseek (InFile, 0, SEEK_END);
228 fgetpos (InFile, &InputFileLength);
229 fseek (InFile, 0, SEEK_SET);
258 if (fread (Buffer, (size_t) InputFileLength, 1, InFile) != 1) {
271 fclose (InFile);
315 FILE *InFile;
333 InFile = fopen (InputFileName[Index], "rb"); [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
pipes.py | 45 sts = t.copy(infile, outfile)
46 If infile or outfile are the empty string, standard input is read or
184 def copy(self, infile, outfile):
185 return os.system(self.makepipeline(infile, outfile))
187 def makepipeline(self, infile, outfile):
188 cmd = makepipeline(infile, self.steps, outfile)
195 def makepipeline(infile, steps, outfile):
211 if kind[0] == 'f' and not infile:
213 list[0][0] = infile
|
/external/icu/icu4c/source/tools/escapesrc/ |
escapesrc.cpp | 32 fprintf(stderr, "%s: usage: %s infile.cpp outfile.cpp\n", prog.c_str(), prog.c_str()); 348 int convert(const std::string &infile, const std::string &outfile) { 349 fprintf(stderr, "escapesrc: %s -> %s\n", infile.c_str(), outfile.c_str()); 353 inf.open(infile.c_str(), std::ios::in); 356 fprintf(stderr, "%s: could not open input file %s\n", prog.c_str(), infile.c_str()); 371 outf << "#line 1 \"" << infile << "\"" << '\n'; local 379 fprintf(stderr, "%s:%d: Fixup failed by %s\n", infile.c_str(), no, prog.c_str()); 397 std::string infile = argv[1]; local 400 return convert(infile, outfile);
|
/external/python/cpython2/Lib/ |
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
|
/external/python/cpython3/Lib/ |
pipes.py | 45 sts = t.copy(infile, outfile) 46 If infile or outfile are the empty string, standard input is read or 170 def copy(self, infile, outfile): 171 return os.system(self.makepipeline(infile, outfile)) 173 def makepipeline(self, infile, outfile): 174 cmd = makepipeline(infile, self.steps, outfile) 181 def makepipeline(infile, steps, outfile): 197 if kind[0] == 'f' and not infile: 199 list[0][0] = infile
|
/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/ |
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/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
|
/external/libvpx/libvpx/examples/ |
vp8cx_set_ref.c | 62 fprintf(stderr, "Usage: %s <width> <height> <infile> <outfile> <frame>\n", 96 FILE *infile = NULL; local 154 if (!(infile = fopen(argv[3], "rb"))) 161 while (vpx_img_read(&raw, infile)) { 178 fclose(infile);
|
/external/vboot_reference/futility/ |
cmd_load_fmap.c | 93 char *infile = 0; local 138 infile = argv[optind++]; 142 futil_copy_file_or_die(infile, outfile); 144 outfile = infile; 159 fprintf(stderr, "Can't find an FMAP in %s\n", infile);
|
/external/clang/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 26 StringRef InFile) override; 35 StringRef InFile) override; 63 StringRef InFile) override;
|
/external/libjpeg-turbo/ |
rdppm.c | 79 pbm_getc (FILE *infile) 85 ch = getc(infile); 88 ch = getc(infile); 96 read_pbm_integer (j_compress_ptr cinfo, FILE *infile, unsigned int maxval) 107 ch = pbm_getc(infile); 116 while ((ch = pbm_getc(infile)) >= '0' && ch <= '9') { 144 FILE *infile = source->pub.input_file; local 152 *ptr++ = rescale[read_pbm_integer(cinfo, infile, maxval)]; 163 FILE *infile = source->pub.input_file; local 171 *ptr++ = rescale[read_pbm_integer(cinfo, infile, maxval)] [all...] |
/external/nanopb-c/tests/site_scons/ |
site_init.py | 18 infile = open(str(source[1])) 20 infile = None 32 stdin = infile,
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 26 StringRef InFile) override; 35 StringRef InFile) override; 63 StringRef InFile) override;
|
/prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 27 StringRef InFile) override; 36 StringRef InFile) override; 63 StringRef InFile) override;
|
/prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 27 StringRef InFile) override; 36 StringRef InFile) override; 63 StringRef InFile) override;
|
/prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 27 StringRef InFile) override; 36 StringRef InFile) override; 63 StringRef InFile) override;
|
/prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 27 StringRef InFile) override; 36 StringRef InFile) override; 63 StringRef InFile) override;
|
/prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 27 StringRef InFile) override; 36 StringRef InFile) override; 63 StringRef InFile) override;
|
/prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 27 StringRef InFile) override; 36 StringRef InFile) override; 63 StringRef InFile) override;
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 26 StringRef InFile) override; 35 StringRef InFile) override; 63 StringRef InFile) override;
|
/prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 27 StringRef InFile) override; 36 StringRef InFile) override; 63 StringRef InFile) override;
|
/prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 27 StringRef InFile) override; 36 StringRef InFile) override; 63 StringRef InFile) override;
|
/prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 27 StringRef InFile) override; 36 StringRef InFile) override; 63 StringRef InFile) override;
|