Home
last modified time | relevance | path

Searched refs:input_filename (Results 1 – 5 of 5) sorted by relevance

/art/runtime/interpreter/mterp/
Dgen_mterp.py65 for input_filename in sorted(input_filenames):
66 lines = open(input_filename, "r").readlines()
/art/tools/create_minidebuginfo/
Dcreate_minidebuginfo.cc146 const char* input_filename = argv[1]; in Main() local
150 std::unique_ptr<File> input_file(OS::OpenFileForReading(input_filename)); in Main()
162 LOG(FATAL) << "Invalid ELF file header " << input_filename; in Main()
/art/dex2oat/
Ddex2oat.cc2784 const char* input_filename, std::function<std::string(const char*)>* process) { in ReadCommentedInputFromFile() argument
2785 std::ifstream input_file(input_filename, std::ifstream::in); in ReadCommentedInputFromFile()
2787 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile()
2800 const char* input_filename, in ReadCommentedInputFromZip() argument
2807 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(input_filename, error_msg)); in ReadCommentedInputFromZip()
2809 *error_msg = StringPrintf("Failed to find '%s' within '%s': %s", input_filename, in ReadCommentedInputFromZip()
2813 MemMap input_file = zip_entry->ExtractToMemMap(zip_filename, input_filename, error_msg); in ReadCommentedInputFromZip()
2815 *error_msg = StringPrintf("Failed to extract '%s' from '%s': %s", input_filename, in ReadCommentedInputFromZip()
/art/profman/
Dprofman.cc1003 const char* input_filename, std::function<std::string(const char*)>* process) { in ReadCommentedInputFromFile() argument
1004 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); in ReadCommentedInputFromFile()
1006 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile()
/art/oatdump/
Doatdump.cc3012 static std::vector<std::string> ReadCommentedInputFromFile(const std::string& input_filename) { in ReadCommentedInputFromFile() argument
3013 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); in ReadCommentedInputFromFile()
3015 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile()