/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/ |
test_email.py | 59 fp = StringIO() 60 print >> fp, NL, NL.join(diff) 61 raise self.failureException, fp.getvalue() 64 fp = openfile(findfile(filename)) 66 msg = email.message_from_file(fp) 68 fp.close() 197 fp = openfile(findfile('msg_46.txt')) 198 msgdata = fp.read() 255 fp = openfile('msg_17.txt') 257 text = fp.read( [all...] |
/bionic/libc/tools/ |
bionic_utils.py | 160 fp = open(file_path) 161 for line in fp.xreadlines(): 168 fp.close()
|
/dalvik/vm/ |
SignalCatcher.cpp | 102 static void logThreadStacks(FILE* fp) 106 dvmCreateFileOutputTarget(&target, fp); 125 fprintf(fp, "----- end %d -----\n", pid);
|
/dalvik/vm/native/ |
dalvik_system_VMStack.cpp | 76 void *fp = dvmThreadSelf()->interpSave.curFrame; local 77 size_t depth = dvmComputeExactFrameDepth(fp); 79 dvmFillStackTraceArray(fp, methods.get(), depth);
|
/external/chromium_org/chrome/test/pyautolib/ |
pyauto_utils_test.py | 28 fp = open(path, 'w') 29 fp.write('magic') 30 fp.close()
|
/external/chromium_org/third_party/openssl/openssl/crypto/bio/ |
bf_nbio.c | 75 static long nbiof_callback_ctrl(BIO *h,int cmd,bio_info_cb *fp); 226 static long nbiof_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) 234 ret=BIO_callback_ctrl(b->next_bio,cmd,fp);
|
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
bio_md.c | 75 static long md_callback_ctrl(BIO *h,int cmd,bio_info_cb *fp); 238 static long md_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) 246 ret=BIO_callback_ctrl(b->next_bio,cmd,fp);
|
/external/libsepol/src/ |
policydb_public.c | 32 void sepol_policy_file_set_fp(sepol_policy_file_t * spf, FILE * fp) 36 pf->fp = fp;
|
/external/linux-tools-perf/util/ |
session.h | 159 size_t perf_session__fprintf_dsos(struct perf_session *self, FILE *fp); 162 FILE *fp, bool with_hits); 164 size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp);
|
/external/openssl/crypto/bio/ |
bf_nbio.c | 75 static long nbiof_callback_ctrl(BIO *h,int cmd,bio_info_cb *fp); 226 static long nbiof_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) 234 ret=BIO_callback_ctrl(b->next_bio,cmd,fp);
|
/external/openssl/crypto/evp/ |
bio_md.c | 75 static long md_callback_ctrl(BIO *h,int cmd,bio_info_cb *fp); 238 static long md_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) 246 ret=BIO_callback_ctrl(b->next_bio,cmd,fp);
|
/external/oprofile/libpopt/ |
popt.h | 445 * @param fp file handle to read 452 int poptConfigFileToString(FILE *fp, /*@out@*/ char ** argstrp, int flags) 454 /*@modifies *fp, *argstrp, fileSystem @*/; 479 * @param fp ouput file handle 482 void poptPrintHelp(poptContext con, FILE * fp, /*@unused@*/ int flags) 484 /*@modifies *fp, fileSystem @*/; 489 * @param fp ouput file handle 492 void poptPrintUsage(poptContext con, FILE * fp, /*@unused@*/ int flags) 494 /*@modifies *fp, fileSystem @*/;
|
/external/oprofile/ |
popt.h | 445 * @param fp file handle to read 452 int poptConfigFileToString(FILE *fp, /*@out@*/ char ** argstrp, int flags) 454 /*@modifies *fp, *argstrp, fileSystem @*/; 479 * @param fp ouput file handle 482 void poptPrintHelp(poptContext con, FILE * fp, /*@unused@*/ int flags) 484 /*@modifies *fp, fileSystem @*/; 489 * @param fp ouput file handle 492 void poptPrintUsage(poptContext con, FILE * fp, /*@unused@*/ int flags) 494 /*@modifies *fp, fileSystem @*/;
|
/external/qemu/ |
gen-charmap.py | 134 fp = open(file,"rb") 135 for line in fp.xreadlines(): 143 fp.close()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_bdist_dumb.py | 83 fp = zipfile.ZipFile(os.path.join('dist', base)) 85 contents = fp.namelist() 87 fp.close()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_zipfile64.py | 42 fp = open(TESTFN, "wb") 43 fp.write(self.data) 44 fp.close()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_bdist_dumb.py | 83 fp = zipfile.ZipFile(os.path.join('dist', base)) 85 contents = fp.namelist() 87 fp.close()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_zipfile64.py | 42 fp = open(TESTFN, "wb") 43 fp.write(self.data) 44 fp.close()
|
/sdk/emulator/opengl/host/tools/emugen/ |
TypeFactory.cpp | 71 FILE *fp = fopen(filename.c_str(), "rt"); local 72 if (fp == NULL) { 78 while(fgets(line, sizeof(line), fp) != NULL) {
|
EntryPoint.cpp | 156 void EntryPoint::print(FILE *fp, bool newline, 161 fprintf(fp, "%s %s%s%s(", 167 if (ctx_param != "") fprintf(fp, "%s ", ctx_param.c_str()); 171 if (i != 0 || ctx_param != "") fprintf(fp, ", "); 172 fprintf(fp, "%s %s", m_vars[i].type()->name().c_str(), 175 fprintf(fp, ")%s", newline? "\n" : "");
|
/external/openssh/ |
ssh-keygen.c | 477 get_line(FILE *fp, char *line, size_t len) 483 while ((c = fgetc(fp)) != EOF) { 490 c = fgetc(fp); 491 if (c != EOF && c != '\n' && ungetc(c, fp) == EOF) { 515 FILE *fp; local 517 if ((fp = fopen(identity_file, "r")) == NULL) 520 while ((blen = get_line(fp, line, sizeof(line))) != -1) { 558 fclose(fp); 565 FILE *fp; local 567 if ((fp = fopen(identity_file, "r")) == NULL 604 FILE *fp; local 746 char *comment = NULL, *cp, *ep, line[16*1024], *fp, *ra; local 947 char *fp, *ra; local 2355 char *fp = key_fingerprint(public, SSH_FP_MD5, SSH_FP_HEX); local [all...] |
/external/chromium_org/third_party/opus/src/celt/ |
mdct.c | 190 const kiss_fft_scalar * OPUS_RESTRICT fp = f2; local 198 yr = S_MUL(fp[1],t[(N4-i)<<shift]) + S_MUL(fp[0],t[i<<shift]); 199 yi = S_MUL(fp[0],t[(N4-i)<<shift]) - S_MUL(fp[1],t[i<<shift]); 203 fp += 2;
|
/external/chromium_org/tools/gyp/ |
gyptest.py | 121 def __init__(self, fp): 122 self.fp = fp 124 self.fp.write(arg) 125 self.fp.flush() 127 return getattr(self.fp, attr)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_osx_support.py | 64 fp = tempfile.NamedTemporaryFile() 66 fp = open("/tmp/_osx_support.%s"%( 69 with contextlib.closing(fp) as fp: 70 cmd = "%s 2>/dev/null >'%s'" % (commandstring, fp.name) 71 return fp.read().decode('utf-8').strip() if not os.system(cmd) else None
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_osx_support.py | 64 fp = tempfile.NamedTemporaryFile() 66 fp = open("/tmp/_osx_support.%s"%( 69 with contextlib.closing(fp) as fp: 70 cmd = "%s 2>/dev/null >'%s'" % (commandstring, fp.name) 71 return fp.read().decode('utf-8').strip() if not os.system(cmd) else None
|