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

/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageDexOptimizer.java275 String oatDir = createOatDirIfSupported(pkg, isa);
280 + " targetFilter=" + compilerFilter + " oatDir=" + oatDir
289 mInstaller.dexopt(path, uid, pkg.packageName, isa, dexoptNeeded, oatDir, dexoptFlags,
407 // arguments as some (dexopNeeded and oatDir) will be computed by installd because
411 /*oatDir*/ null, dexoptFlags,
637 File oatDir = getOatDir(codePath);
639 mInstaller.createOatDir(oatDir.getAbsolutePath(), dexInstructionSet);
644 return oatDir.getAbsolutePath();
H A DOtaDexoptService.java380 String oatDir = PackageDexOptimizer.getOatDir(new File(pkg.codePath)).
387 installer.moveAb(path, dexCodeInstructionSet, oatDir);
H A DInstaller.java449 public void createOatDir(String oatDir, String dexInstructionSet) argument
453 mInstalld.createOatDir(oatDir, dexInstructionSet);
H A DPackageInstallerSession.java975 final File oatDir = new File(toDir, "oat");
976 createOatDirs(mResolvedInstructionSets, oatDir);
1264 final File oatDir = new File(packageInstallDir, "oat");
1265 if (oatDir.exists()) {
1266 final File[] archSubdirs = oatDir.listFiles();
H A DPackageManagerService.java[all...]
/frameworks/native/cmds/installd/binder/android/os/
H A DIInstalld.aidl81 void createOatDir(@utf8InCpp String oatDir, @utf8InCpp String instructionSet);
/frameworks/native/cmds/installd/
H A DInstalldNativeService.h118 binder::Status createOatDir(const std::string& oatDir, const std::string& instructionSet);
H A DInstalldNativeService.cpp2314 binder::Status InstalldNativeService::createOatDir(const std::string& oatDir, argument
2317 CHECK_ARGUMENT_PATH(oatDir);
2320 const char* oat_dir = oatDir.c_str();
2325 return error("Invalid path " + oatDir);
2328 return error("Failed to prepare " + oatDir);
2331 return error("Failed to restorecon " + oatDir);

Completed in 547 milliseconds