Searched refs:input_filename (Results 1 – 5 of 5) sorted by relevance
/art/runtime/interpreter/mterp/ |
D | gen_mterp.py | 65 for input_filename in sorted(input_filenames): 66 lines = open(input_filename, "r").readlines()
|
/art/tools/create_minidebuginfo/ |
D | create_minidebuginfo.cc | 146 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/ |
D | dex2oat.cc | 2784 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/ |
D | profman.cc | 1003 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/ |
D | oatdump.cc | 3012 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()
|