Searched refs:input_filename (Results 1 – 4 of 4) sorted by relevance
/art/patchoat/ |
D | patchoat.cc | 110 static bool SymlinkFile(const std::string& input_filename, const std::string& output_filename) { in SymlinkFile() argument 111 if (input_filename == output_filename) { in SymlinkFile() 120 if (symlink(input_filename.c_str(), output_filename.c_str()) < 0) { in SymlinkFile() 121 PLOG(ERROR) << "Failed to create symlink " << output_filename << " -> " << input_filename; in SymlinkFile() 126 LOG(INFO) << "Created symlink " << output_filename << " -> " << input_filename; in SymlinkFile()
|
/art/dex2oat/ |
D | dex2oat.cc | 2757 const char* input_filename, std::function<std::string(const char*)>* process) { in ReadCommentedInputFromFile() argument 2758 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); in ReadCommentedInputFromFile() 2760 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile() 2774 const char* input_filename, in ReadCommentedInputFromZip() argument 2781 std::unique_ptr<ZipEntry> zip_entry(zip_archive->Find(input_filename, error_msg)); in ReadCommentedInputFromZip() 2783 *error_msg = StringPrintf("Failed to find '%s' within '%s': %s", input_filename, in ReadCommentedInputFromZip() 2788 input_filename, in ReadCommentedInputFromZip() 2791 *error_msg = StringPrintf("Failed to extract '%s' from '%s': %s", input_filename, in ReadCommentedInputFromZip()
|
/art/profman/ |
D | profman.cc | 703 const char* input_filename, std::function<std::string(const char*)>* process) { in ReadCommentedInputFromFile() argument 704 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); in ReadCommentedInputFromFile() 706 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile()
|
/art/oatdump/ |
D | oatdump.cc | 3557 static std::vector<std::string> ReadCommentedInputFromFile(const std::string& input_filename) { in ReadCommentedInputFromFile() argument 3558 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in)); in ReadCommentedInputFromFile() 3560 LOG(ERROR) << "Failed to open input file " << input_filename; in ReadCommentedInputFromFile()
|