Searched refs:AddDexFileSource (Results 1 – 4 of 4) sorted by relevance
/aosp_15_r20/art/dex2oat/linker/ |
H A D | oat_writer.h | 137 bool AddDexFileSource( 142 bool AddDexFileSource(
|
H A D | oat_writer_test.cc | 133 if (!oat_writer.AddDexFileSource(dex_filename, dex_filename)) { in WriteElf() 151 if (!oat_writer.AddDexFileSource(std::move(dex_file_fd), location)) { in WriteElf()
|
H A D | oat_writer.cc | 412 bool OatWriter::AddDexFileSource(const char* filename, const char* location) { in AddDexFileSource() function in art::linker::OatWriter 420 return AddDexFileSource(std::move(fd), location); in AddDexFileSource() 425 bool OatWriter::AddDexFileSource(File&& dex_file_fd, const char* location) { in AddDexFileSource() function in art::linker::OatWriter
|
/aosp_15_r20/art/dex2oat/ |
H A D | dex2oat.cc | 2607 if (!oat_writers_[0]->AddDexFileSource(File(zip_fd_, /* check_usage */ false), in AddDexFileSources() 2630 if (!oat_writer->AddDexFileSource(File(dex_fds_[i], /* check_usage */ false), in AddDexFileSources() 2635 if (!oat_writer->AddDexFileSource(dex_filenames_[i].c_str(), in AddDexFileSources()
|