Home
last modified time | relevance | path

Searched refs:vdex_fd (Results 1 – 9 of 9) sorted by relevance

/art/libartpalette/include/palette/
Dpalette_method_list.h46 int vdex_fd) \
50 int vdex_fd) \
/art/libartpalette/apex/
Dpalette.cc176 int vdex_fd) { in PaletteNotifyStartDex2oatCompilation() argument
179 return m(source_fd, art_fd, oat_fd, vdex_fd); in PaletteNotifyStartDex2oatCompilation()
185 int vdex_fd) { in PaletteNotifyEndDex2oatCompilation() argument
188 return m(source_fd, art_fd, oat_fd, vdex_fd); in PaletteNotifyEndDex2oatCompilation()
/art/libartpalette/system/
Dpalette_fake.cc100 int vdex_fd ATTRIBUTE_UNUSED) { in PaletteNotifyStartDex2oatCompilation()
107 int vdex_fd ATTRIBUTE_UNUSED) { in PaletteNotifyEndDex2oatCompilation()
/art/runtime/
Doat_file_assistant.cc99 int vdex_fd, in OatFileAssistant() argument
117 CHECK_LE(vdex_fd, 0) << "zip_fd must be provided with valid vdex_fd. zip_fd=" << zip_fd in OatFileAssistant()
118 << " vdex_fd=" << vdex_fd;; in OatFileAssistant()
136 odex_.Reset(odex_file_name, UseFdToReadFiles(), zip_fd, vdex_fd, oat_fd); in OatFileAssistant()
142 DupCloexec(vdex_fd), in OatFileAssistant()
154 vdex_for_oat_.Reset(vdex_file_name, UseFdToReadFiles(), zip_fd, vdex_fd, oat_fd); in OatFileAssistant()
964 int vdex_fd, in Reset() argument
970 vdex_fd_ = vdex_fd; in Reset()
Doat_file_assistant.h127 int vdex_fd,
328 int vdex_fd = -1,
Doat_file.cc121 int vdex_fd,
145 bool LoadVdex(int vdex_fd,
238 int vdex_fd, in OpenOatFile() argument
265 if (!ret->LoadVdex(vdex_fd, vdex_location, writable, low_4gb, error_msg)) { in OpenOatFile()
314 bool OatFileBase::LoadVdex(int vdex_fd, in LoadVdex() argument
319 if (vdex_fd != -1) { in LoadVdex()
321 int rc = TEMP_FAILURE_RETRY(fstat(vdex_fd, &s)); in LoadVdex()
329 vdex_fd, in LoadVdex()
1894 int vdex_fd, in Open() argument
1907 vdex_fd, in Open()
Doat_file.h148 int vdex_fd,
Doat_file_assistant_test.cc470 android::base::unique_fd vdex_fd(open(vdex_location.c_str(), O_RDONLY | O_CLOEXEC)); in TEST_F() local
478 vdex_fd.get(), in TEST_F()
509 android::base::unique_fd vdex_fd(open(vdex_location.c_str(), O_RDONLY | O_CLOEXEC)); in TEST_F() local
517 vdex_fd.get(), in TEST_F()
/art/runtime/gc/space/
Dimage_space.cc1410 mutable android::base::unique_fd vdex_fd; member
1935 android::base::unique_fd vdex_fd(memfd_create_compat(vdex_filename.c_str(), /*flags=*/ 0)); in CompileExtension() local
1937 if (art_fd.get() == -1 || vdex_fd.get() == -1 || oat_fd.get() == -1) { in CompileExtension()
1969 args.push_back("--output-vdex-fd=" + std::to_string(vdex_fd.get())); in CompileExtension()
2031 chunk.vdex_fd.reset(vdex_fd.release()); in CompileExtension()
2811 android::base::unique_fd vdex_fd, in OpenOatFile() argument
2833 DCHECK_EQ(vdex_fd.get() != -1, oat_fd.get() != -1); in OpenOatFile()
2834 if (vdex_fd.get() == -1) { in OpenOatFile()
2845 vdex_fd.get(), in OpenOatFile()
3043 std::move(chunk.vdex_fd), in LoadComponents()