Home
last modified time | relevance | path

Searched refs:art_fd (Results 1 – 5 of 5) sorted by relevance

/art/libartpalette/include/palette/
Dpalette_method_list.h43 M(PaletteNotifyStartDex2oatCompilation, int source_fd, int art_fd, int oat_fd, int vdex_fd) \
44 M(PaletteNotifyEndDex2oatCompilation, int source_fd, int art_fd, int oat_fd, int vdex_fd) \
/art/libartpalette/apex/
Dpalette.cc176 int art_fd, in PaletteNotifyStartDex2oatCompilation() argument
181 return m(source_fd, art_fd, oat_fd, vdex_fd); in PaletteNotifyStartDex2oatCompilation()
185 int art_fd, in PaletteNotifyEndDex2oatCompilation() argument
190 return m(source_fd, art_fd, oat_fd, vdex_fd); in PaletteNotifyEndDex2oatCompilation()
/art/libartpalette/system/
Dpalette_fake.cc100 int art_fd ATTRIBUTE_UNUSED, in PaletteNotifyStartDex2oatCompilation()
107 int art_fd ATTRIBUTE_UNUSED, in PaletteNotifyEndDex2oatCompilation()
/art/runtime/gc/space/
Dimage_space.cc1939 android::base::unique_fd art_fd(memfd_create_compat(art_filename.c_str(), /*flags=*/ 0)); in CompileBootclasspathElements() local
1942 if (art_fd.get() == -1 || vdex_fd.get() == -1 || oat_fd.get() == -1) { in CompileBootclasspathElements()
1981 args.push_back("--image-fd=" + std::to_string(art_fd.get())); in CompileBootclasspathElements()
2021 File image_file(art_fd.release(), /*check_usage=*/ false); in CompileBootclasspathElements()
2025 art_fd.reset(image_file.Release()); in CompileBootclasspathElements()
2045 chunk.art_fd.reset(art_fd.release()); in CompileBootclasspathElements()
2782 android::base::unique_fd art_fd, in Load() argument
2787 if (art_fd.get() != -1) { in Load()
2793 File image_file(art_fd.release(), image_filename, /*check_usage=*/ false); in Load()
3035 if (chunk.art_fd.get() >= 0) { in LoadComponents()
[all …]
Dimage_space.h339 mutable android::base::unique_fd art_fd; member