Searched defs:input_filename (Results 1 - 4 of 4) sorted by relevance

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

Completed in 755 milliseconds