Home | History | Annotate | Download | only in mterp

Lines Matching refs:open

3 # Copyright (C) 2007 The Android Open Source Project
121 stub_fp = open(tokens[1])
247 opcode_fp = open(interp_defs_file)
424 # Append the file specified by "source" to the open "outfp". Each line will
440 infp = open(source, "r")
538 # Open config file.
541 config_fp = open("config-%s" % target_arch)
543 print "Unable to open config file 'config-%s'" % target_arch
547 # Open and prepare output files.
550 c_fp = open("%s/InterpC-%s.cpp" % (output_dir, target_arch), "w")
551 asm_fp = open("%s/InterpAsm-%s.S" % (output_dir, target_arch), "w")
553 print "Unable to open output files"
557 # failed to open we probably won't be able to remove them either.