HomeSort by relevance Sort by last modified time
    Searched refs:outfp (Results 1 - 3 of 3) 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 207 def emitAsmHeader(outfp, dict):
208 outfp.write("/* ------------------------------ */\n")
212 outfp.write(" .balign 4\n")
216 outfp.write(" .global %s\n" % template_name);
217 outfp.write("%s:\n" % template_name);
223 def emitAsmStub(outfp, dict):
224 emitAsmHeader(outfp, dict)
227 outfp.write(templ.substitute(dict))
230 # Append the file specified by "source" to the open "outfp". Each line will
244 def appendSourceFile(source, dict, outfp, sister_list)
    [all...]
  /dalvik/vm/mterp/
gen-mterp.py 261 def emitAsmHeader(outfp, dict):
262 outfp.write("/* ------------------------------ */\n")
266 outfp.write(" .balign %d\n" % handler_size_bytes)
269 outfp.write(label_prefix + "_%(opcode)s: /* 0x%(opnum)02x */\n" % dict)
275 def emitAsmStub(outfp, dict):
276 emitAsmHeader(outfp, dict)
279 outfp.write(templ.substitute(dict))
282 # Append the file specified by "source" to the open "outfp". Each line will
296 def appendSourceFile(source, dict, outfp, sister_list):
297 outfp.write("/* File: %s */\n" % source
    [all...]

Completed in 32 milliseconds