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

/frameworks/base/services/core/java/com/android/server/pm/
H A DInstaller.java49 /** Hint that the dexopt type is profile-guided. */
55 /** Indicates that the dex file passed to dexopt in on CE storage. */
57 /** Indicates that the dex file passed to dexopt in on DE storage. */
279 public void dexopt(String apkPath, int uid, @Nullable String pkgName, String instructionSet, method in class:Installer
287 mInstalld.dexopt(apkPath, uid, pkgName, instructionSet, dexoptNeeded, outputPath,
/frameworks/native/cmds/installd/
H A DInstalldNativeService.cpp53 #include "dexopt.h"
1800 binder::Status InstalldNativeService::dexopt(const std::string& apkPath, int32_t uid, function in class:android::installd::InstalldNativeService
1821 int res = android::installd::dexopt(apk_path, uid, pkgname, instruction_set, dexoptNeeded,
1823 return res ? error(res, "Failed to dexopt") : ok();
H A Ddexopt.cpp42 #include "dexopt.h"
467 * Whether dexopt should use a swap file when compiling an APK.
614 ALOGE("setgid(%d) failed in installd during dexopt\n", uid);
618 ALOGE("setuid(%d) failed in installd during dexopt\n", uid);
912 ALOGE("installd cannot chmod '%s' during dexopt\n", path);
915 ALOGE("installd cannot chown '%s' during dexopt\n", path);
1090 << "' for image file during dexopt";
1099 ALOGE("installd cannot set owner '%s' for image during dexopt\n", image_path.c_str());
1106 // Creates the dexopt swap file if necessary and return its fd.
1123 ALOGE("installd could not create '%s' for swap during dexopt\
1490 int dexopt(const char* dex_path, uid_t uid, const char* pkgname, const char* instruction_set, function
[all...]

Completed in 421 milliseconds