Lines Matching refs:dexopt
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>&2
255 # suffix part of the path. The dexopt executable (deep inside the vm
265 # Find the dexopt binary if necesasry, and verify it.
266 if [ "x${dexopt}" = 'x' ]; then
267 dexopt="`ls host/*/bin/dexopt`"
269 echo "can't find dexopt binary" 1>&2
271 elif [ `expr -- "${dexopt}" : ".* "` != '0' ]; then
276 if [ ! -x "${dexopt}" ]; then
277 echo "dexopt binary is not executable: ${dexopt}" 1>&2
296 "${dexopt}" --preopt "${inputFile}" "${outputFile}" "${optimizeFlags}"
312 "${dexopt}" --preopt "${inputFile}" "${outputFile}" "${optimizeFlags}"