Home
last modified time | relevance | path

Searched refs:ADB (Results 1 – 25 of 94) sorted by relevance

1234

/external/adeb/
Dandrodeb15 ADB="adb"
62 --device|-s) ADB="$ADB -s $2"; shift || true; shift || true; ;;
104 $ADB pull $PRESERVE "${files[@]}" "$@"
117 $ADB push $sync "${files[@]}" $dest
126 do_adb_root "$ADB"
144 $ADB shell /data/androdeb/device-umount-all || true;
145 $ADB shell rm -rf /data/androdeb; exit 0; fi
151 set +e; $ADB shell ls /data/androdeb/debian/.bashrc > /dev/null 2>&1
161 $ADB shell -t /data/androdeb/run-command "\"$SHELL_ARGS\""
163 $ADB shell -t /data/androdeb/run
[all …]
/external/skia/platform_tools/android/bin/utils/
Dandroid_setup.sh87 ANDROID_MD5_SUPPORT=`$ADB $DEVICE_SERIAL shell ls -ld /system/bin/md5`
89 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5 $ANDROID_DST`
91 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5sum $ANDROID_DST`
101 $ADB $DEVICE_SERIAL pull $ANDROID_SRC $HOST_DST
105 $ADB $DEVICE_SERIAL pull $ANDROID_SRC $HOST_DST
124 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld $ANDROID_DST`
131 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld $ANDROID_DST 2> /dev/null`
134 ANDROID_MD5_SUPPORT=`$ADB $DEVICE_SERIAL shell ls -ld /system/bin/md5 2> /dev/null`
136 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5 $ANDROID_DST`
138 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5sum $ANDROID_DST`
[all …]
Dsetup_adb.sh8 ADB="python ${PYADB}"
13 ADB="$(which adb)"
15 ADB="${ANDROID_SDK_ROOT}/platform-tools/adb"
22 if [ ! -x $ADB ]; then
/external/skqp/platform_tools/android/bin/utils/
Dandroid_setup.sh87 ANDROID_MD5_SUPPORT=`$ADB $DEVICE_SERIAL shell ls -ld /system/bin/md5`
89 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5 $ANDROID_DST`
91 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5sum $ANDROID_DST`
101 $ADB $DEVICE_SERIAL pull $ANDROID_SRC $HOST_DST
105 $ADB $DEVICE_SERIAL pull $ANDROID_SRC $HOST_DST
124 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld $ANDROID_DST`
131 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld $ANDROID_DST 2> /dev/null`
134 ANDROID_MD5_SUPPORT=`$ADB $DEVICE_SERIAL shell ls -ld /system/bin/md5 2> /dev/null`
136 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5 $ANDROID_DST`
138 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5sum $ANDROID_DST`
[all …]
Dsetup_adb.sh8 ADB="python ${PYADB}"
13 ADB="$(which adb)"
15 ADB="${ANDROID_SDK_ROOT}/platform-tools/adb"
22 if [ ! -x $ADB ]; then
/external/skia/platform_tools/android/bin/
Dandroid_run_skia25 $ADB $DEVICE_SERIAL logcat -c;
36 $ADB ${DEVICE_SERIAL} push ${CMD_FILENAME} /data/local/tmp
39 $ADB ${DEVICE_SERIAL} shell sh /data/local/tmp/${CMD_FILENAME}
41 if [ -z "$($ADB $DEVICE_SERIAL shell 'if [ -f $STATUS_FILENAME ]; then echo exists; fi')" ]; then
42 if [ $LOGCAT ]; then $ADB $DEVICE_SERIAL logcat -d; fi
49 EXIT_CODE=`$ADB ${DEVICE_SERIAL} shell cat ${STATUS_FILENAME}`
50 $ADB ${DEVICE_SERIAL} shell rm -f ${STATUS_FILENAME} ${CMD_FILENAME}
54 if [ $LOGCAT ]; then $ADB $DEVICE_SERIAL logcat -d; fi
63 if [ $LOGCAT ]; then $ADB $DEVICE_SERIAL logcat -d; fi
Dandroid_gdb_app17 $ADB $DEVICE_SERIAL forward "tcp:$PORT" "tcp:$PORT"
21 …$ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs -r $ADB $DEVICE_SERIAL sh…
23 …$ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB $DEVICE_SERIAL shell…
38 $ADB $DEVICE_SERIAL shell "am start -n ${activity} --es cmdLineFlags \"${APP_ARGS[*]:1}\""
44 PID=$($ADB shell ps | grep ${activityShort} | awk '{print $2}')
46 $ADB $DEVICE_SERIAL shell /data/local/tmp/gdbserver :$PORT --attach $PID &
Dandroid_gdbserver52 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld ${SYSTEM_LIBRARY_PATH}/${library_file}`
72 $ADB forward "tcp:5039" "tcp:5039"
77 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB shell kill 2> /dev/null
78 $ADB shell ps | grep ${APP_NAME} | awk '{print $2}' | xargs $ADB shell kill 2> /dev/null
83 $ADB shell /data/local/tmp/gdbserver :5039 /data/local/tmp/${APP_ARGS[@]} &
Dandroid_perf59 $ADB shell ps | grep ${runVars[0]} | awk '{print $2}' | xargs $ADB shell kill
62 $ADB shell /data/local/tmp/${runVars[@]} &
68 APP_PID=$($ADB shell ps | grep ${runVars[0]} | awk '{print $2}')
69 $ADB shell /data/local/tmp/simpleperf record -p ${APP_PID} -o /data/local/tmp/perf.data sleep 70
71 $ADB pull /data/local/tmp/perf.data $PERF_TMP_DIR/perf.data
Dandroid_install_app38 $ADB ${DEVICE_SERIAL} uninstall org.skia.${APP_LC} > /dev/null
42 $ADB ${DEVICE_SERIAL} install -r ${SKIA_OUT}/${APP_LC}.apk
Dandroid_launch_app16 $ADB ${DEVICE_SERIAL} shell "am start -S -n ${activity} --es cmdLineFlags \"${APP_ARGS[*]:1}\""
/external/skqp/platform_tools/android/bin/
Dandroid_run_skia25 $ADB $DEVICE_SERIAL logcat -c;
36 $ADB ${DEVICE_SERIAL} push ${CMD_FILENAME} /data/local/tmp
39 $ADB ${DEVICE_SERIAL} shell sh /data/local/tmp/${CMD_FILENAME}
41 if [ -z "$($ADB $DEVICE_SERIAL shell 'if [ -f $STATUS_FILENAME ]; then echo exists; fi')" ]; then
42 if [ $LOGCAT ]; then $ADB $DEVICE_SERIAL logcat -d; fi
49 EXIT_CODE=`$ADB ${DEVICE_SERIAL} shell cat ${STATUS_FILENAME}`
50 $ADB ${DEVICE_SERIAL} shell rm -f ${STATUS_FILENAME} ${CMD_FILENAME}
54 if [ $LOGCAT ]; then $ADB $DEVICE_SERIAL logcat -d; fi
63 if [ $LOGCAT ]; then $ADB $DEVICE_SERIAL logcat -d; fi
Dandroid_gdb_app17 $ADB $DEVICE_SERIAL forward "tcp:$PORT" "tcp:$PORT"
21 …$ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs -r $ADB $DEVICE_SERIAL sh…
23 …$ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB $DEVICE_SERIAL shell…
38 $ADB $DEVICE_SERIAL shell "am start -n ${activity} --es cmdLineFlags \"${APP_ARGS[*]:1}\""
44 PID=$($ADB shell ps | grep ${activityShort} | awk '{print $2}')
46 $ADB $DEVICE_SERIAL shell /data/local/tmp/gdbserver :$PORT --attach $PID &
Dandroid_gdbserver52 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld ${SYSTEM_LIBRARY_PATH}/${library_file}`
72 $ADB forward "tcp:5039" "tcp:5039"
77 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB shell kill 2> /dev/null
78 $ADB shell ps | grep ${APP_NAME} | awk '{print $2}' | xargs $ADB shell kill 2> /dev/null
83 $ADB shell /data/local/tmp/gdbserver :5039 /data/local/tmp/${APP_ARGS[@]} &
Dandroid_perf59 $ADB shell ps | grep ${runVars[0]} | awk '{print $2}' | xargs $ADB shell kill
62 $ADB shell /data/local/tmp/${runVars[@]} &
68 APP_PID=$($ADB shell ps | grep ${runVars[0]} | awk '{print $2}')
69 $ADB shell /data/local/tmp/simpleperf record -p ${APP_PID} -o /data/local/tmp/perf.data sleep 70
71 $ADB pull /data/local/tmp/perf.data $PERF_TMP_DIR/perf.data
Dandroid_install_app38 $ADB ${DEVICE_SERIAL} uninstall org.skia.${APP_LC} > /dev/null
42 $ADB ${DEVICE_SERIAL} install -r ${SKIA_OUT}/${APP_LC}.apk
/external/compiler-rt/lib/asan/scripts/
Dasan_device_setup38 $ADB push "$1" "$2"
41 $ADB push "$1" "/data/local/tmp/$FILENAME"
42 $ADB shell su -c "rm \\\"$2/$FILENAME\\\"" >&/dev/null
43 $ADB shell su -c "cat \\\"/data/local/tmp/$FILENAME\\\" > \\\"$2/$FILENAME\\\""
44 $ADB shell su -c "rm \\\"/data/local/tmp/$FILENAME\\\""
50 $ADB remount
52 local STORAGE=`$ADB shell mount | grep /system | cut -d ' ' -f1`
55 $ADB shell su -c "mount -o remount,rw $STORAGE /system"
64 $ADB shell $@
66 $ADB shell su -c "$*"
[all …]
/external/adeb/utils/
Dsupport38 ADB="$1"
39 $ADB root > /dev/null 2>&1
52 $ADB shell ls /data/androdeb/debian > /dev/null 2>&1
/external/walt/docs/
DDevelopment.md3 …e only available USB connector on the phone, the typical development using ADB via USB becomes dif…
8 ADB can work over TCP connections. The [official documentation](https://developer.android.com/studi…
31 1. Click Manage your Android preferences and enable ADB debugging like on a regular Android device:
35 1. Enable ADB debugging
/external/compiler-rt/test/asan/android_commands/
Dandroid_common.py5 ADB = os.environ.get('ADB', 'adb') variable
19 ret = subprocess.call([ADB] + args, stdout=out, stderr=subprocess.STDOUT)
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/
Dfp-add-02.ll17 ; Check the low end of the ADB range.
27 ; Check the high end of the aligned ADB range.
63 ; Check that ADB allows indices.
76 ; Check that additions of spilled values can use ADB rather than ADBR.
/external/llvm/test/CodeGen/SystemZ/
Dfp-add-02.ll17 ; Check the low end of the ADB range.
27 ; Check the high end of the aligned ADB range.
63 ; Check that ADB allows indices.
76 ; Check that additions of spilled values can use ADB rather than ADBR.
/external/libusb/android/
DREADME54 1. Enable ADB on the device.
56 2. Connect the device to a machine running ADB.
59 running ADB:
84 4. If your device only has a single OTG port then ADB can generally
/external/autotest/server/cros/tradefed_test_unittest_data/
DCtsDeqpTestCases-trimmed.txt14 07-25 01:23:39 W/DeqpTestRunner: ADB link failed, retrying after a cooldown period
20 07-25 01:24:50 W/DeqpTestRunner: ADB link failed, trying to recover
24 07-25 01:25:55 W/DeqpTestRunner: ADB link failed after recovery, rebooting device
30 07-25 01:28:00 W/DeqpTestRunner: Cannot recover ADB connection
/external/google-breakpad/android/
Drun-checks.sh49 ADB=
65 --adb=*) ADB=$optarg;;
222 if ! adb_check_device $ADB; then

1234