Searched defs:dexopt (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/os/
H A DInstallerConnection.java93 public int dexopt(String apkPath, int uid, boolean isPublic, String instructionSet) { method in class:InstallerConnection
94 return dexopt(apkPath, uid, isPublic, "*", instructionSet, false);
97 public int dexopt(String apkPath, int uid, boolean isPublic, String pkgName, method in class:InstallerConnection
99 StringBuilder builder = new StringBuilder("dexopt");
/frameworks/base/services/core/java/com/android/server/pm/
H A DInstaller.java76 public int dexopt(String apkPath, int uid, boolean isPublic, String instructionSet) { method in class:Installer
82 return mInstaller.dexopt(apkPath, uid, isPublic, instructionSet);
85 public int dexopt(String apkPath, int uid, boolean isPublic, String pkgName, method in class:Installer
92 return mInstaller.dexopt(apkPath, uid, isPublic, pkgName, instructionSet, vmSafeMode);
/frameworks/native/cmds/installd/
H A Dcommands.c633 property_get("dalvik.vm.dexopt-flags", dexopt_flags, "");
634 ALOGV("dalvik.vm.dexopt-flags=%s\n", dexopt_flags);
636 static const char* DEX_OPT_BIN = "/system/bin/dexopt";
875 * Whether dexopt should use a swap file when compiling an APK. If kAlwaysProvideSwapFile, do this
891 int dexopt(const char *apk_path, uid_t uid, bool is_public, function
965 ALOGE("installd cannot open '%s' for input during dexopt\n", input_file);
972 ALOGE("installd cannot open '%s' for output during dexopt\n", out_path);
978 ALOGE("installd cannot chmod '%s' during dexopt\n", out_path);
982 ALOGE("installd cannot chown '%s' during dexopt\n", out_path);
1003 ALOGE("installd could not create '%s' for swap during dexopt\
[all...]

Completed in 574 milliseconds