Lines Matching refs:runtime
108 Runtime* runtime = Runtime::Current(); in IsInBootClassPath() local
109 ClassLinker* class_linker = runtime->GetClassLinker(); in IsInBootClassPath()
639 Runtime* runtime = Runtime::Current(); in RelocateOatFile() local
646 if (!runtime->IsDex2OatEnabled()) { in RelocateOatFile()
653 argv.push_back(runtime->GetPatchoatExecutable()); in RelocateOatFile()
676 Runtime* runtime = Runtime::Current(); in GenerateOatFile() local
677 if (!runtime->IsDex2OatEnabled()) { in GenerateOatFile()
740 Runtime* runtime = Runtime::Current(); in Dex2Oat() local
748 argv.push_back(runtime->GetCompilerExecutable()); in Dex2Oat()
752 std::string class_path = runtime->GetClassPathString(); in Dex2Oat()
757 if (runtime->IsDebuggable()) { in Dex2Oat()
760 runtime->AddCurrentRuntimeFeaturesAsDex2OatArguments(&argv); in Dex2Oat()
762 if (!runtime->IsVerificationEnabled()) { in Dex2Oat()
766 if (runtime->MustRelocateIfPossible()) { in Dex2Oat()
780 std::vector<std::string> compiler_options = runtime->GetCompilerOptions(); in Dex2Oat()
848 Runtime* runtime = Runtime::Current(); in ImageLocation() local
850 runtime->GetHeap()->GetBootImageSpaces(); in ImageLocation()
972 Runtime* runtime = Runtime::Current(); in GetImageInfo() local
973 std::vector<gc::space::ImageSpace*> image_spaces = runtime->GetHeap()->GetBootImageSpaces(); in GetImageInfo()