Home | History | Annotate | Download | only in android

Lines Matching defs:adb

105   adb devices -l | \
124 # Find and run "adb".
125 adb() {
127 for path in "$(which adb 2>/dev/null)" \
128 "${ANDROID_SDK_HOME}/sdk/platform-tools/adb" \
129 "${android_root}/prebuilts/sdk/platform-tools/adb"; do
136 echo -e "Unable to find adb." \
324 # or an empty string. If $3 is an empty string adb will fail when multiple
331 adb ${adb_device} uninstall "${uninstall_package_name}" 1>&2 > /dev/null || \
335 # NOTE: The following works around adb not returning an error code when
338 local -r adb_install_result=$(adb ${adb_device} install "${install_apk}")
346 # If $2 is an empty string adb will fail when multiple devices are connected
352 adb ${adb_device} shell cat system/build.prop | \
360 adb ${adb_device} logcat -c
374 adb ${adb_device} logcat | \
396 # Kill adb logcat if this shell exits.
406 adb ${adb_device} shell am start ${adb_stop_activity} -n \
468 $(adb devices -l)