Searched refs:image_classes (Results 1 - 5 of 5) sorted by relevance

/art/compiler/
H A Dimage_test.cc129 std::set<std::string> image_classes(*compiler_driver_->GetImageClasses());
179 if (image_classes.find(descriptor) != image_classes.end()) {
H A Dimage_writer.cc723 const std::set<std::string>* image_classes = compiler_driver_.GetImageClasses(); local
724 CHECK(image_classes != NULL);
725 for (const std::string& image_class : *image_classes) {
/art/dex2oat/
H A Ddex2oat.cc296 std::unique_ptr<std::set<std::string>> image_classes(new std::set<std::string>);
304 image_classes->insert(descriptor);
306 return image_classes.release();
361 std::unique_ptr<std::set<std::string>>& image_classes,
397 image_classes.release(),
1391 std::unique_ptr<std::set<std::string>> image_classes(nullptr);
1395 image_classes.reset(dex2oat->ReadImageClassesFromZip(image_classes_zip_filename,
1399 image_classes.reset(dex2oat->ReadImageClassesFromFile(image_classes_filename));
1401 if (image_classes.get() == nullptr) {
1409 image_classes
353 CreateOatFile(const std::string& boot_image_option, const std::string& android_root, bool is_host, const std::vector<const DexFile*>& dex_files, File* oat_file, const std::string& oat_location, const std::string& bitcode_filename, bool image, std::unique_ptr<std::set<std::string>>& image_classes, std::unique_ptr<std::set<std::string>>& compiled_classes, bool dump_stats, bool dump_passes, TimingLogger& timings, CumulativeLogger& compiler_phases_timings, int swap_fd, std::string profile_file, SafeMap<std::string, std::string>* key_value_store) argument
[all...]
/art/compiler/driver/
H A Dcompiler_driver.cc338 bool image, std::set<std::string>* image_classes,
355 image_classes_(image_classes),
705 std::set<std::string>* image_classes = reinterpret_cast<std::set<std::string>*>(arg); local
707 image_classes->insert(klass->GetDescriptor(&temp));
777 static void MaybeAddToImageClasses(Handle<mirror::Class> c, std::set<std::string>* image_classes)
786 std::pair<std::set<std::string>::iterator, bool> result = image_classes->insert(descriptor);
794 image_classes);
798 MaybeAddToImageClasses(hs.NewHandle(klass->GetComponentType()), image_classes);
332 CompilerDriver(const CompilerOptions* compiler_options, VerificationResults* verification_results, DexFileToMethodInlinerMap* method_inliner_map, Compiler::Kind compiler_kind, InstructionSet instruction_set, InstructionSetFeatures instruction_set_features, bool image, std::set<std::string>* image_classes, std::set<std::string>* compiled_classes, size_t thread_count, bool dump_stats, bool dump_passes, CumulativeLogger* timer, int swap_fd, std::string profile_file) argument
H A Dcompiler_driver.h101 // enabled. "image_classes" lets the compiler know what classes it
110 bool image, std::set<std::string>* image_classes,

Completed in 163 milliseconds