Lines Matching refs:out_oat
1883 RestorableFile out_oat = in dexopt() local
1885 if (out_oat.fd() < 0) { in dexopt()
1893 if (!open_vdex_files_for_dex2oat(dex_path, out_oat.path().c_str(), dexopt_needed, in dexopt()
1915 unique_fd swap_fd = maybe_open_dexopt_swap_file(out_oat.path()); in dexopt()
1929 RestorableFile out_image = maybe_open_app_image(out_oat.path(), generate_app_image, is_public, in dexopt()
1964 runner.Initialize(out_oat.GetUniqueFile(), out_vdex.GetUniqueFile(), out_image.GetUniqueFile(), in dexopt()
1986 if (flock(out_oat.fd(), LOCK_EX | LOCK_NB) != 0) { in dexopt()
1988 out_oat.path().c_str()); in dexopt()
2019 if (!out_oat.CreateBackupFile() || !out_vdex.CreateBackupFile() || in dexopt()
2023 << ", out_oat:" << out_oat.path() << " ,out_vdex:" << out_vdex.path() in dexopt()
2025 out_oat.ResetAndRemoveAllFiles(); in dexopt()
2030 if (!out_oat.CommitWorkFile() || !out_vdex.CommitWorkFile() || !out_image.CommitWorkFile()) { in dexopt()
2031 LOG(ERROR) << "Cannot commit, out_oat:" << out_oat.path() in dexopt()
2033 if (!out_oat.RestoreBackupFile() || !out_vdex.RestoreBackupFile() || in dexopt()
2035 LOG(ERROR) << "Cannot cancel commit, out_oat:" << out_oat.path() in dexopt()
2038 out_oat.ResetAndRemoveAllFiles(); in dexopt()
2045 out_oat.RemoveBackupFile(); in dexopt()