Home
last modified time | relevance | path

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

/art/patchoat/
Dpatchoat.cc98 static bool SymlinkFile(const std::string& input_filename, const std::string& output_filename) { in SymlinkFile() argument
99 if (input_filename == output_filename) { in SymlinkFile()
108 if (symlink(input_filename.c_str(), output_filename.c_str()) < 0) { in SymlinkFile()
109 PLOG(ERROR) << "Failed to create symlink " << output_filename << " -> " << input_filename; in SymlinkFile()
114 LOG(INFO) << "Created symlink " << output_filename << " -> " << input_filename; in SymlinkFile()
/art/profman/
Dprofman.cc525 const char* input_filename, std::function<std::string(const char*)>* process) { in ReadCommentedInputFromFile() argument
526 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); in ReadCommentedInputFromFile()
528 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile()
/art/dex2oat/
Ddex2oat.cc2585 const char* input_filename, std::function<std::string(const char*)>* process) { in ReadCommentedInputFromFile() argument
2586 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); in ReadCommentedInputFromFile()
2588 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile()
2602 const char* input_filename, in ReadCommentedInputFromZip() argument
2609 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(input_filename, error_msg)); in ReadCommentedInputFromZip()
2611 *error_msg = StringPrintf("Failed to find '%s' within '%s': %s", input_filename, in ReadCommentedInputFromZip()
2616 input_filename, in ReadCommentedInputFromZip()
2619 *error_msg = StringPrintf("Failed to extract '%s' from '%s': %s", input_filename, in ReadCommentedInputFromZip()
/art/oatdump/
Doatdump.cc3277 static std::vector<std::string> ReadCommentedInputFromFile(const std::string& input_filename) { in ReadCommentedInputFromFile() argument
3278 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); in ReadCommentedInputFromFile()
3280 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile()