Home
last modified time | relevance | path

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

123

/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/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/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/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/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/google-breakpad/android/
Drun-checks.sh49 ADB=
65 --adb=*) ADB=$optarg;;
222 if ! adb_check_device $ADB; then
/external/autotest/server/site_tests/brillo_ADBDirectoryTransfer/
Dcontrol13 Tests whether ADB can handle directory transfers.
/external/autotest/server/site_tests/brillo_ADBFileTransfer/
Dcontrol.pts13 Tests whether ADB can handle large/long file transfers reliably
Dcontrol.bvt13 Tests whether ADB can handle large/long file transfers.
/external/vogar/src/vogar/
DVogar.java585 ADB(AdbTarget.defaultDeviceDir()), enumConstant
624 targetType = TargetType.ADB; in run()
634 case ADB: in run()
/external/sl4a/
DREADME.md7 ADB as well as execution of scripts from on-device via a series of lightweight translation layers.
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/
Den-GB_kh0_kpdf_phs.pkb254 !*6AFE?8325:ADB;0#
/external/webrtc/webrtc/modules/audio_device/ios/
Daudio_device_ios.mm329 // Ensure that the audio device buffer (ADB) knows about the internal audio
521 // Inform the audio device buffer (ADB) about the new audio format.
709 // Update the ADB parameters since the sample rate might have changed.
1058 // Get a pointer to the recorded audio and send it to the WebRTC ADB.
/external/icu/icu4c/source/data/curr/
Dhr.txt1131 "obračunska jedinica ADB",
2696 few{"obračunske jedinice ADB"}
2697 one{"obračunska jedinica ADB"}
2698 other{"obračunskih jedinica ADB"}
Dgd.txt1131 "Aonad cunntasachd ADB",
2987 few{"aonadan cunntasachd ADB"}
2988 one{"aonad cunntasachd ADB"}
2989 other{"aonad cunntasachd ADB"}
2990 two{"aonad cunntasachd ADB"}
Dfi.txt1131 "afrikkalainen ADB-laskentayksikkö",
2424 one{"ADB-laskentayksikkö"}
2425 other{"ADB-laskentayksikköä"}
Dnl.txt1131 "ADB-rekeneenheid",
2425 one{"ADB-rekeneenheid"}
2426 other{"ADB-rekeneenheid"}
Dnb.txt1131 "ADB-kontoenhet",
2414 one{"ADB-kontoenhet"}
2415 other{"ADB-kontoenheter"}

123