Searched refs:ADB (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/skia/platform_tools/android/bin/utils/
H A Dsetup_adb.sh7 ADB="$(which adb)"
9 ADB=$UTIL_DIR/../linux/adb
11 ADB=$UTIL_DIR/../mac/adb
13 echo "ERROR: Could not find ADB!"
17 #echo "ADB is: $ADB"
/external/skia/platform_tools/android/bin/utils/
H A Dsetup_adb.sh7 ADB="$(which adb)"
9 ADB=$UTIL_DIR/../linux/adb
11 ADB=$UTIL_DIR/../mac/adb
13 echo "ERROR: Could not find ADB!"
17 #echo "ADB is: $ADB"
/external/chromium_org/third_party/skia/platform_tools/android/bin/
H A Dandroid_kill_skia27 $ADB $SERIAL shell ps | grep skia | awk '{print $2}' | xargs -r $ADB $SERIAL shell kill
29 $ADB $SERIAL shell ps | grep skia | awk '{print $2}' | xargs $ADB $SERIAL shell kill
H A Dandroid_run_skia27 $ADB ${DEVICE_SERIAL} shell \
30 if [ -z "$($ADB $DEVICE_SERIAL shell 'if [ -f $STATUS_FILENAME ]; then echo exists; fi')" ]; then
37 EXIT_CODE=`$ADB ${DEVICE_SERIAL} shell cat ${STATUS_FILENAME}`
38 $ADB ${DEVICE_SERIAL} shell rm -f ${STATUS_FILENAME}
43 echo "ADB failed to retrieve the application's exit code"
H A Dandroid_gdbserver48 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld ${SYSTEM_LIBRARY_PATH}/${library_file}`
74 $ADB forward "tcp:5039" "tcp:5039"
78 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB shell kill
79 $ADB shell ps | grep ${APP_NAME} | awk '{print $2}' | xargs $ADB shell kill
83 $ADB shell LD_LIBRARY_PATH=/data/local/tmp:\$LD_LIBRARY_PATH /data/local/tmp/gdbserver :5039 /data/local/tmp/skia_launcher ${APP_ARGS[@]} &
H A Dandroid_install_apk45 $ADB ${DEVICE_SERIAL} uninstall com.skia > /dev/null
49 $ADB ${DEVICE_SERIAL} install ${installOptions} ${SKIA_OUT}/${BUILDTYPE}/android/bin/SkiaAndroid.apk
H A Dandroid_gdb_apk16 $ADB forward "tcp:$PORT" "tcp:$PORT"
19 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs -r $ADB shell kill
39 PID=$($ADB shell ps | grep com.skia | awk '{print $2}')
41 $ADB shell /data/local/tmp/gdbserver :$PORT --attach $PID &
H A Dandroid_perf72 $ADB shell ps | grep skia_launcher | awk '{print $2}' | xargs $ADB shell kill
75 $ADB shell /data/local/tmp/skia_launcher ${runVars[@]} &
81 APP_PID=$($ADB shell ps | grep skia_launcher | awk '{print $2}')
82 $ADB shell perf record -p ${APP_PID} sleep 70
84 $ADB pull /data/perf.data $PERF_TMP_DIR/perf.data
/external/skia/platform_tools/android/bin/
H A Dandroid_kill_skia27 $ADB $SERIAL shell ps | grep skia | awk '{print $2}' | xargs -r $ADB $SERIAL shell kill
29 $ADB $SERIAL shell ps | grep skia | awk '{print $2}' | xargs $ADB $SERIAL shell kill
H A Dandroid_run_skia24 $ADB ${DEVICE_SERIAL} shell \
26 if [ -z "$($ADB $DEVICE_SERIAL shell 'if [ -f $STATUS_FILENAME ]; then echo exists; fi')" ]; then
33 EXIT_CODE=`$ADB ${DEVICE_SERIAL} shell cat ${STATUS_FILENAME}`
34 $ADB ${DEVICE_SERIAL} shell rm -f ${STATUS_FILENAME}
39 echo "ADB failed to retrieve the application's exit code"
H A Dandroid_gdbserver59 $ADB forward "tcp:5039" "tcp:5039"
63 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB shell kill
64 $ADB shell ps | grep ${APP_NAME} | awk '{print $2}' | xargs $ADB shell kill
68 $ADB shell /data/local/tmp/gdbserver :5039 /data/local/tmp/skia_launcher ${APP_ARGS[@]} &
H A Dandroid_install_apk45 $ADB ${DEVICE_SERIAL} uninstall com.skia > /dev/null
49 $ADB ${DEVICE_SERIAL} install ${installOptions} ${SKIA_OUT}/${BUILDTYPE}/android/bin/SkiaAndroid.apk
H A Dandroid_gdb_apk16 $ADB forward "tcp:$PORT" "tcp:$PORT"
19 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs -r $ADB shell kill
39 PID=$($ADB shell ps | grep com.skia | awk '{print $2}')
41 $ADB shell /data/local/tmp/gdbserver :$PORT --attach $PID &
H A Dandroid_perf72 $ADB shell ps | grep skia_launcher | awk '{print $2}' | xargs $ADB shell kill
75 $ADB shell /data/local/tmp/skia_launcher ${runVars[@]} &
81 APP_PID=$($ADB shell ps | grep skia_launcher | awk '{print $2}')
82 $ADB shell perf record -p ${APP_PID} sleep 70
84 $ADB pull /data/perf.data $PERF_TMP_DIR/perf.data
/external/chromium_org/tools/android/asan/
H A Dasan_device_setup.sh68 ADB=${ADB:-adb}
70 ADB="$ADB -s $device"
77 $ADB root
78 $ADB wait-for-device
79 $ADB remount
80 $ADB shell mv /system/bin/app_process.real /system/bin/app_process
81 $ADB shell rm /system/bin/asanwrapper
82 $ADB shel
[all...]
/external/compiler-rt/lib/asan/scripts/
H A Dasan_device_setup68 ADB=${ADB:-adb}
70 ADB="$ADB -s $device"
77 $ADB root
78 $ADB wait-for-device
79 $ADB remount
80 $ADB shell mv /system/bin/app_process.real /system/bin/app_process
81 $ADB shell rm /system/bin/asanwrapper
82 $ADB shel
[all...]
/external/compiler-rt/test/asan/android_commands/
H A Dandroid_common.py5 ADB = os.environ.get('ADB', 'adb') variable
15 return subprocess.call([ADB] + args, stdout=devnull, stderr=subprocess.STDOUT)
/external/chromium_org/build/android/
H A Dadb_gdb39 "$ADB" shell rm "$TARGET_GDBSERVER" >/dev/null 2>&1
86 ADB=
115 ADB=$optarg
318 --adb=<file> Specify host ADB binary.
584 # Check that ADB is in our path
585 if [ -z "$ADB" ]; then
586 ADB=$(which adb 2>/dev/null)
587 if [ -z "$ADB" ]; then
591 log "Auto-config: --adb=$ADB"
595 ADB_VERSION=$($ADB versio
[all...]
/external/chromium_org/third_party/usb_ids/
H A Dusb.ids2698 1016 ADB/USB Orbit
4881 0119 F5U120-PC Dual PS/2 Ports / F5U118-UNV ADB Adapter
7771 0003 ADB to USB convertor
8027 0405 iMate, ADB Adapter

Completed in 625 milliseconds