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

/art/dex2oat/linker/
H A Dimage_writer.cc203 std::unique_ptr<File> image_file; local
206 image_file.reset(new File(image_fd, unix_file::kCheckSafeUsage));
208 if (image_file != nullptr) {
209 TEMP_FAILURE_RETRY(image_file->SetLength(0));
210 TEMP_FAILURE_RETRY(image_file->Flush());
216 image_file.reset(OS::CreateEmptyFile(image_filename));
219 if (image_file == nullptr) {
224 if (!compile_app_image_ && fchmod(image_file->Fd(), 0644) != 0) {
226 image_file->Erase();
295 if (!image_file
[all...]

Completed in 52 milliseconds