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

/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageDexOptimizer.java209 String oatDir = createOatDirIfSupported(pkg, isa);
214 + " target-filter=" + compilerFilter + " oatDir=" + oatDir
220 mInstaller.dexopt(path, uid, pkg.packageName, isa, dexoptNeeded, oatDir, dexoptFlags,
319 // arguments as some (dexopNeeded and oatDir) will be computed by installd because
323 /*oatDir*/ null, dexoptFlags,
559 File oatDir = getOatDir(codePath);
561 mInstaller.createOatDir(oatDir.getAbsolutePath(), dexInstructionSet);
566 return oatDir.getAbsolutePath();
H A DInstaller.java423 public void createOatDir(String oatDir, String dexInstructionSet) argument
427 mInstalld.createOatDir(oatDir, dexInstructionSet);
H A DOtaDexoptService.java394 String oatDir = PackageDexOptimizer.getOatDir(new File(pkg.codePath)).
401 installer.moveAb(path, dexCodeInstructionSet, oatDir);
H A DPackageInstallerSession.java628 final File oatDir = new File(toDir, "oat");
629 createOatDirs(mResolvedInstructionSets, oatDir);
842 final File oatDir = new File(packageInstallDir, "oat");
843 if (oatDir.exists()) {
844 final File[] archSubdirs = oatDir.listFiles();
/frameworks/native/cmds/installd/binder/android/os/
H A DIInstalld.aidl71 void createOatDir(@utf8InCpp String oatDir, @utf8InCpp String instructionSet);
/frameworks/native/cmds/installd/
H A DInstalldNativeService.h106 binder::Status createOatDir(const std::string& oatDir, const std::string& instructionSet);
H A DInstalldNativeService.cpp2172 binder::Status InstalldNativeService::createOatDir(const std::string& oatDir, argument
2177 const char* oat_dir = oatDir.c_str();
2182 return error("Invalid path " + oatDir);
2185 return error("Failed to prepare " + oatDir);
2188 return error("Failed to restorecon " + oatDir);

Completed in 158 milliseconds