Searched refs:opened_dex_files (Results 1 - 7 of 7) sorted by relevance

/art/compiler/
H A Doat_writer.h156 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files);
270 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files);
272 const std::vector<std::unique_ptr<const DexFile>>& opened_dex_files);
H A Doat_writer.cc424 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) {
464 *opened_dex_files = std::move(dex_files);
2126 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) {
2193 *opened_dex_files = std::move(dex_files);
2199 const std::vector<std::unique_ptr<const DexFile>>& opened_dex_files) {
2202 DCHECK_EQ(opened_dex_files.size(), oat_dex_files_.size());
2203 for (size_t i = 0, size = opened_dex_files.size(); i != size; ++i) {
2211 opened_dex_files[i]->CreateTypeLookupTable(lookup_table);
2215 DCHECK_EQ(opened_dex_files_map == nullptr, opened_dex_files.empty());
H A Dimage_test.cc212 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
241 opened_dex_files.push_back(std::move(cur_dex_file));
H A Doat_test.cc185 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
193 &opened_dex_files)) {
199 for (const std::unique_ptr<const DexFile>& dex_file : opened_dex_files) {
/art/runtime/
H A Doat_file_manager.cc207 std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) {
215 opened_dex_files->push_back(std::move(dex_file));
468 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
493 /*out*/&opened_dex_files);
506 AddDexFilesFromOat(oat_file, /*already_loaded*/false, &queue, &opened_dex_files);
204 AddDexFilesFromOat(const OatFile* oat_file, bool already_loaded, std::priority_queue<DexFileAndClassPair>* heap, std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) argument
/art/dex2oat/
H A Ddex2oat.cc1397 std::vector<std::unique_ptr<const DexFile>> opened_dex_files; local
1405 &opened_dex_files)) {
1408 dex_files_per_oat_file_.push_back(MakeNonOwningPointerVector(opened_dex_files));
1411 for (std::unique_ptr<const DexFile>& dex_file : opened_dex_files) {
1416 DCHECK(opened_dex_files.empty());
1987 // Opens requested class path files and appends them to opened_dex_files. If the dex files have
1990 std::vector<std::unique_ptr<const DexFile>>* opened_dex_files,
1993 DCHECK(opened_dex_files != nullptr) << "OpenClassPathFiles dex out-param is nullptr";
2002 if (!DexFile::Open(location.c_str(), location.c_str(), &error_msg, opened_dex_files)) {
2014 opened_dex_files
1989 OpenClassPathFiles(const std::vector<std::string>& class_path_locations, std::vector<std::unique_ptr<const DexFile>>* opened_dex_files, std::vector<std::unique_ptr<OatFile>>* opened_oat_files, InstructionSet isa) argument
[all...]
/art/oatdump/
H A Doatdump.cc87 std::unique_ptr<const DexFile>> opened_dex_files; member in namespace:art
91 auto it = opened_dex_files.find(oat_dex_file);
92 if (it != opened_dex_files.end()) {
96 opened_dex_files.emplace(oat_dex_file, std::unique_ptr<const DexFile>(ret));

Completed in 274 milliseconds