Home
last modified time | relevance | path

Searched refs:oat_fd (Results 1 – 10 of 10) sorted by relevance

/art/libartpalette/include/palette/
Dpalette_method_list.h44 M(PaletteNotifyStartDex2oatCompilation, int source_fd, int art_fd, int oat_fd, int vdex_fd) \
45 M(PaletteNotifyEndDex2oatCompilation, int source_fd, int art_fd, int oat_fd, int vdex_fd) \
/art/libartpalette/apex/
Dpalette.cc178 int oat_fd, in PaletteNotifyStartDex2oatCompilation() argument
182 return m(source_fd, art_fd, oat_fd, vdex_fd); in PaletteNotifyStartDex2oatCompilation()
187 int oat_fd, in PaletteNotifyEndDex2oatCompilation() argument
191 return m(source_fd, art_fd, oat_fd, vdex_fd); in PaletteNotifyEndDex2oatCompilation()
/art/libartpalette/system/
Dpalette_fake.cc97 [[maybe_unused]] int oat_fd, in PaletteNotifyStartDex2oatCompilation() argument
104 [[maybe_unused]] int oat_fd, in PaletteNotifyEndDex2oatCompilation() argument
/art/runtime/oat/
Doat_file_assistant.cc112 int oat_fd, in OatFileAssistant() argument
129 CHECK_LE(oat_fd, 0) << "zip_fd must be provided with valid oat_fd. zip_fd=" << zip_fd in OatFileAssistant()
130 << " oat_fd=" << oat_fd; in OatFileAssistant()
171 odex_.Reset(odex_file_name, UseFdToReadFiles(), zip_fd, vdex_fd, oat_fd); in OatFileAssistant()
178 DupCloexec(oat_fd)); in OatFileAssistant()
185 DupCloexec(oat_fd)); in OatFileAssistant()
200 vdex_for_oat_.Reset(vdex_file_name, UseFdToReadFiles(), zip_fd, vdex_fd, oat_fd); in OatFileAssistant()
202 dm_for_oat_.Reset(dm_file_name, UseFdToReadFiles(), zip_fd, vdex_fd, oat_fd); in OatFileAssistant()
1248 const std::string& filename, bool use_fd, int zip_fd, int vdex_fd, int oat_fd) { in Reset() argument
1254 oat_fd_ = oat_fd; in Reset()
Doat_file_assistant.h182 int oat_fd,
425 int oat_fd = -1);
Doat_file.cc125 int oat_fd,
162 virtual bool Load(int oat_fd,
258 int oat_fd, in OpenOatFile() argument
270 if (!ret->Load(oat_fd, in OpenOatFile()
1161 bool Load([[maybe_unused]] int oat_fd, in Load() argument
1595 bool Load(int oat_fd,
1660 bool ElfOatFile::Load(int oat_fd, in Load() argument
1667 if (oat_fd != -1) { in Load()
1668 int duped_fd = DupCloexec(oat_fd); in Load()
1873 bool Load([[maybe_unused]] int oat_fd, in Load() argument
[all …]
Doat_file.h160 int oat_fd,
Doat_file_assistant_test.cc213 int oat_fd = -1, in CreateOatFileAssistant() argument
222 oat_fd, in CreateOatFileAssistant()
/art/runtime/gc/space/
Dimage_space.cc1759 int oat_fd = bcp_index < boot_class_path_oat_files_.size() in ValidateOatFile() local
1775 DCHECK_EQ(oat_fd >= 0, vdex_fd >= 0); in ValidateOatFile()
1776 if (oat_fd >= 0) { in ValidateOatFile()
1780 oat_fd, in ValidateOatFile()
1959 android::base::unique_fd oat_fd(memfd_create_compat(oat_filename.c_str(), /*flags=*/ 0)); in CompileBootclasspathElements() local
1960 if (art_fd.get() == -1 || vdex_fd.get() == -1 || oat_fd.get() == -1) { in CompileBootclasspathElements()
2001 args.push_back("--oat-fd=" + std::to_string(oat_fd.get())); in CompileBootclasspathElements()
2065 chunk.oat_fd.reset(oat_fd.release()); in CompileBootclasspathElements()
2848 android::base::unique_fd oat_fd, in OpenOatFile() argument
2870 DCHECK_EQ(vdex_fd.get() != -1, oat_fd.get() != -1); in OpenOatFile()
[all …]
Dimage_space.h342 mutable android::base::unique_fd oat_fd; member