Home | History | Annotate | Download | only in runtime

Lines Matching refs:image_dex_files

1206 static bool CompareDexFiles(const std::list<ObjPtr<mirror::String>>& image_dex_files,
1210 bool equal = (image_dex_files.size() == loader_dex_files.size()) &&
1211 std::equal(image_dex_files.begin(),
1212 image_dex_files.end(),
1219 VLOG(image) << "Image dex files " << image_dex_files.size();
1220 for (ObjPtr<mirror::String> name : image_dex_files) {
1248 std::list<ObjPtr<mirror::String>> image_dex_files;
1249 if (!GetDexFileNames(soa, image_class_loader, &image_dex_files, error_msg)) {
1258 if (!CompareDexFiles(image_dex_files, loader_dex_files, error_msg)) {