Home
last modified time | relevance | path

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

/art/libartpalette/include/palette/
Dpalette_method_list.h45 int oat_fd, \
49 int oat_fd, \
/art/libartpalette/apex/
Dpalette.cc175 int oat_fd, in PaletteNotifyStartDex2oatCompilation() argument
179 return m(source_fd, art_fd, oat_fd, vdex_fd); in PaletteNotifyStartDex2oatCompilation()
184 int oat_fd, in PaletteNotifyEndDex2oatCompilation() argument
188 return m(source_fd, art_fd, oat_fd, vdex_fd); in PaletteNotifyEndDex2oatCompilation()
/art/libartpalette/system/
Dpalette_fake.cc99 int oat_fd ATTRIBUTE_UNUSED, in PaletteNotifyStartDex2oatCompilation()
106 int oat_fd ATTRIBUTE_UNUSED, in PaletteNotifyEndDex2oatCompilation()
/art/runtime/
Doat_file_assistant.cc100 int oat_fd, in OatFileAssistant() argument
115 CHECK_LE(oat_fd, 0) << "zip_fd must be provided with valid oat_fd. zip_fd=" << zip_fd in OatFileAssistant()
116 << " oat_fd=" << oat_fd; in OatFileAssistant()
136 odex_.Reset(odex_file_name, UseFdToReadFiles(), zip_fd, vdex_fd, oat_fd); in OatFileAssistant()
143 DupCloexec(oat_fd)); in OatFileAssistant()
154 vdex_for_oat_.Reset(vdex_file_name, UseFdToReadFiles(), zip_fd, vdex_fd, oat_fd); in OatFileAssistant()
965 int oat_fd) { in Reset() argument
971 oat_fd_ = oat_fd; in Reset()
Doat_file_assistant.h128 int oat_fd,
329 int oat_fd = -1);
Doat_file.cc122 int oat_fd,
158 virtual bool Load(int oat_fd,
239 int oat_fd, in OpenOatFile() argument
250 if (!ret->Load(oat_fd, in OpenOatFile()
1030 bool Load(int oat_fd ATTRIBUTE_UNUSED, in Load()
1461 bool Load(int oat_fd,
1527 bool ElfOatFile::Load(int oat_fd, in Load() argument
1534 if (oat_fd != -1) { in Load()
1535 int duped_fd = DupCloexec(oat_fd); in Load()
1698 bool Load(int oat_fd ATTRIBUTE_UNUSED, in Load()
[all …]
Doat_file.h149 int oat_fd,
/art/runtime/gc/space/
Dimage_space.cc1411 mutable android::base::unique_fd oat_fd; member
1936 android::base::unique_fd oat_fd(memfd_create_compat(oat_filename.c_str(), /*flags=*/ 0)); in CompileExtension() local
1937 if (art_fd.get() == -1 || vdex_fd.get() == -1 || oat_fd.get() == -1) { in CompileExtension()
1970 args.push_back("--oat-fd=" + std::to_string(oat_fd.get())); in CompileExtension()
2032 chunk.oat_fd.reset(oat_fd.release()); in CompileExtension()
2812 android::base::unique_fd oat_fd, in OpenOatFile() argument
2833 DCHECK_EQ(vdex_fd.get() != -1, oat_fd.get() != -1); in OpenOatFile()
2846 oat_fd.get(), in OpenOatFile()
3044 std::move(chunk.oat_fd), in LoadComponents()