/dalvik/tools/ |
dex-preopt | 31 # "dexopt" is available on the host. 38 # --dexopt=path/to/dexopt -- Specify the path to the dexopt executable. 40 # that looks like host/ARCH/bin which must contain dexopt. 73 dexopt='' 120 elif [ "${option}" = 'dexopt' -a "${hasValue}" = 'yes' ]; then 121 dexopt="${value}" 222 echo ' [--build-dir=path/to/out] [--dexopt=path/to/dexopt]' 1>& [all...] |
/dalvik/dexopt/ |
Android.mk | 16 # dexopt, the DEX file optimizer. This is fully integrated with the VM, 48 LOCAL_MODULE := dexopt 64 LOCAL_MODULE := dexopt
|
/build/target/product/ |
core_minimal.mk | 47 dexopt \
|
mini.mk | 80 dexopt \
|
/build/core/ |
dex_preopt.mk | 13 DEXPREOPT_DEXOPT := $(patsubst $(DEXPREOPT_BUILD_DIR)/%,%,$(DEXOPT)) 36 $(hide) $(DEXPREOPT) --dexopt=$(DEXPREOPT_DEXOPT) --build-dir=$(DEXPREOPT_BUILD_DIR) \ 50 $(_dbj_odex) : $(_dbj_src_jar) | $(ACP) $(DEXPREOPT) $(DEXOPT)
|
config.mk | 312 DEXOPT := $(HOST_OUT_EXECUTABLES)/dexopt$(HOST_EXECUTABLE_SUFFIX)
|
main.mk | 381 ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.dexopt-flags=m=y [all...] |
/dalvik/ |
Android.mk | 23 dexopt \
|
/libcore/ |
Android.mk | 63 $(HOST_OUT)/bin/dexopt \
|
/frameworks/native/cmds/installd/ |
installd.h | 210 int dexopt(const char *apk_path, uid_t uid, int is_public);
|
installd.c | 40 return dexopt(arg[0], atoi(arg[1]), atoi(arg[2])); 133 { "dexopt", 3, do_dexopt },
|
commands.c | 585 static const char* DEX_OPT_BIN = "/system/bin/dexopt"; 630 int dexopt(const char *apk_path, uid_t uid, int is_public) function 647 property_get("dalvik.vm.dexopt-flags", dexopt_flags, ""); 667 ALOGE("dexopt cannot open '%s' for input\n", apk_path); 674 ALOGE("dexopt cannot open '%s' for output\n", dex_path); 680 ALOGE("dexopt cannot chmod '%s'\n", dex_path); 684 ALOGE("dexopt cannot chown '%s'\n", dex_path); 695 ALOGE("setgid(%d) failed during dexopt\n", uid); 699 ALOGE("setuid(%d) during dexopt\n", uid); 722 ALOGE("dexopt failed on '%s' res = %d\n", dex_path, res) [all...] |
/frameworks/base/services/java/com/android/server/pm/ |
Installer.java | 204 public int dexopt(String apkPath, int uid, boolean isPublic) { method in class:Installer 205 StringBuilder builder = new StringBuilder("dexopt");
|
PackageManagerService.java | [all...] |