Searched refs:input_filename (Results 1 – 4 of 4) sorted by relevance
/art/runtime/interpreter/mterp/ |
D | gen_mterp.py | 66 for input_filename in sorted(input_filenames): 67 lines = open(input_filename, "r").readlines()
|
/art/dex2oat/ |
D | dex2oat.cc | 2893 const char* input_filename, std::function<std::string(const char*)>* process) { in ReadCommentedInputFromFile() argument 2894 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); in ReadCommentedInputFromFile() 2896 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile() 2909 const char* input_filename, in ReadCommentedInputFromZip() argument 2916 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(input_filename, error_msg)); in ReadCommentedInputFromZip() 2918 *error_msg = StringPrintf("Failed to find '%s' within '%s': %s", input_filename, in ReadCommentedInputFromZip() 2922 MemMap input_file = zip_entry->ExtractToMemMap(zip_filename, input_filename, error_msg); in ReadCommentedInputFromZip() 2924 *error_msg = StringPrintf("Failed to extract '%s' from '%s': %s", input_filename, in ReadCommentedInputFromZip()
|
/art/profman/ |
D | profman.cc | 863 const char* input_filename, std::function<std::string(const char*)>* process) { in ReadCommentedInputFromFile() argument 864 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); in ReadCommentedInputFromFile() 866 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile()
|
/art/oatdump/ |
D | oatdump.cc | 3364 static std::vector<std::string> ReadCommentedInputFromFile(const std::string& input_filename) { in ReadCommentedInputFromFile() argument 3365 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); in ReadCommentedInputFromFile() 3367 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile()
|