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

/art/patchoat/
H A Dpatchoat.cc386 const std::string& output_oat_filename,
398 LOG(ERROR) << "Oat file " << output_oat_filename << " already exists, refusing to overwrite";
403 TEMP_FAILURE_RETRY(unlink(output_oat_filename.c_str()));
406 if (symlink(input_oat_filename.c_str(), output_oat_filename.c_str()) < 0) {
408 LOG(ERROR) << "Failed to create symlink at " << output_oat_filename
414 LOG(INFO) << "Created symlink " << output_oat_filename << " -> " << input_oat_filename;
962 std::string output_oat_filename; local
1023 output_oat_filename = option.substr(strlen("--output-oat-file=")).data();
1238 if (output_oat_filename.empty()) {
1239 output_oat_filename
385 ReplaceOatFileWithSymlink(const std::string& input_oat_filename, const std::string& output_oat_filename, bool output_oat_opened_from_fd, bool new_oat_out) argument
[all...]

Completed in 17 milliseconds