HomeSort by relevance Sort by last modified time
    Searched refs:dexopt (Results 1 - 14 of 14) sorted by null

  /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/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 296 DEXOPT := $(HOST_OUT_EXECUTABLES)/dexopt$(HOST_EXECUTABLE_SUFFIX)
main.mk 340 ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.dexopt-flags=m=y
  /build/target/product/
core.mk 58 dexopt \
mini.mk 77 dexopt \
  /dalvik/
Android.mk 23 dexopt \
  /libcore/
Android.mk 60 $(HOST_OUT)/bin/dexopt \
  /frameworks/base/cmds/installd/
installd.h 159 int dexopt(const char *apk_path, uid_t uid, int is_public);
installd.c 37 return dexopt(arg[0], atoi(arg[1]), atoi(arg[2]));
144 { "dexopt", 3, do_dexopt },
commands.c 518 static const char* DEX_OPT_BIN = "/system/bin/dexopt";
563 int dexopt(const char *apk_path, uid_t uid, int is_public) function
580 property_get("dalvik.vm.dexopt-flags", dexopt_flags, "");
600 ALOGE("dexopt cannot open '%s' for input\n", apk_path);
607 ALOGE("dexopt cannot open '%s' for output\n", dex_path);
611 ALOGE("dexopt cannot chown '%s'\n", dex_path);
617 ALOGE("dexopt cannot chmod '%s'\n", dex_path);
628 ALOGE("setgid(%d) failed during dexopt\n", uid);
632 ALOGE("setuid(%d) during dexopt\n", uid);
645 ALOGE("dexopt failed on '%s' res = %d\n", dex_path, res)
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
Installer.java 202 public int dexopt(String apkPath, int uid, boolean isPublic) { method in class:Installer
203 StringBuilder builder = new StringBuilder("dexopt");
PackageManagerService.java     [all...]

Completed in 413 milliseconds