HomeSort by relevance Sort by last modified time
    Searched refs:outfp (Results 1 - 13 of 13) 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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_quopri.py 149 outfp = cStringIO.StringIO()
150 quopri.encode(infp, outfp, quotetabs=False)
151 self.assertTrue(outfp.getvalue() == e)
157 outfp = cStringIO.StringIO()
158 quopri.decode(infp, outfp)
159 self.assertTrue(outfp.getvalue() == p)
test_base64.py 47 outfp = StringIO()
48 base64.encode(infp, outfp)
49 eq(outfp.getvalue(),
57 outfp = StringIO()
58 base64.decode(infp, outfp)
59 self.assertEqual(outfp.getvalue(), 'www.python.org')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_quopri.py 149 outfp = cStringIO.StringIO()
150 quopri.encode(infp, outfp, quotetabs=False)
151 self.assertTrue(outfp.getvalue() == e)
157 outfp = cStringIO.StringIO()
158 quopri.decode(infp, outfp)
159 self.assertTrue(outfp.getvalue() == p)
test_base64.py 47 outfp = StringIO()
48 base64.encode(infp, outfp)
49 eq(outfp.getvalue(),
57 outfp = StringIO()
58 base64.decode(infp, outfp)
59 self.assertEqual(outfp.getvalue(), 'www.python.org')
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
quopri.py 110 outfp = StringIO()
111 encode(infp, outfp, quotetabs, header)
112 return outfp.getvalue()
164 outfp = StringIO()
165 decode(infp, outfp, header = header)
166 return outfp.getvalue()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
quopri.py 110 outfp = StringIO()
111 encode(infp, outfp, quotetabs, header)
112 return outfp.getvalue()
164 outfp = StringIO()
165 decode(infp, outfp, header = header)
166 return outfp.getvalue()
  /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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
generator.py 43 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78):
46 outfp is the output file-like object for writing the message to. It
60 self._fp = outfp
305 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78, fmt=None):
327 Generator.__init__(self, outfp, mangle_from_, maxheaderlen)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
generator.py 43 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78):
46 outfp is the output file-like object for writing the message to. It
60 self._fp = outfp
305 def __init__(self, outfp, mangle_from_=True, maxheaderlen=78, fmt=None):
327 Generator.__init__(self, outfp, mangle_from_, maxheaderlen)

Completed in 374 milliseconds