HomeSort by relevance Sort by last modified time
    Searched refs:outfp (Results 1 - 5 of 5) sorted by null

  /external/dropbear/
netbsd_getpass.c 66 FILE *fp, *outfp; local
79 if ((outfp = fp = fopen(_PATH_TTY, "w+")) == NULL) {
80 outfp = stderr;
99 (void)fputs(prompt, outfp);
100 rewind(outfp); /* implied flush */
105 (void)write(fileno(outfp), "\n", 1);
  /dalvik/vm/compiler/template/
gen-template.py 208 def emitAsmHeader(outfp, dict):
209 outfp.write("/* ------------------------------ */\n")
213 outfp.write(" .balign 4\n")
217 outfp.write(" .global %s\n" % template_name);
218 outfp.write("%s:\n" % template_name);
224 def emitAsmStub(outfp, dict):
225 emitAsmHeader(outfp, dict)
228 outfp.write(templ.substitute(dict))
231 # Append the file specified by "source" to the open "outfp". Each line will
245 def appendSourceFile(source, dict, outfp, sister_list)
    [all...]
  /dalvik/vm/mterp/
gen-mterp.py 403 def emitAsmHeader(outfp, dict, prefix):
404 outfp.write("/* ------------------------------ */\n")
411 outfp.write(prefix + "_%(opcode)s: /* 0x%(opnum)02x */\n" % dict)
417 def emitAsmStub(outfp, dict):
418 emitAsmHeader(outfp, dict, label_prefix)
421 outfp.write(templ.substitute(dict))
424 # Append the file specified by "source" to the open "outfp". Each line will
438 def appendSourceFile(source, dict, outfp, sister_list):
439 outfp.write("/* File: %s */\n" % source)
458 appendSourceFile(alt_source, new_dict, outfp, sister_list
    [all...]
  /external/checkpolicy/
checkmodule.c 113 FILE *outfp = NULL; local
120 outfp = fopen(file, "w");
121 if (!outfp) {
132 pf.fp = outfp;
138 fclose(outfp);
checkpolicy.c 394 FILE *outfp = NULL; local
602 outfp = fopen(outfile, "w");
603 if (!outfp) {
613 pf.fp = outfp;
620 fclose(outfp);

Completed in 469 milliseconds