/frameworks/base/core/tests/overlaytests/ |
runtests.sh | 3 adb="adb" 5 adb="adb $*" # for setting -e, -d or -s <serial> 36 $adb wait-for-device logcat -c 37 $adb wait-for-device logcat | grep -m 1 -e 'PowerManagerService.*bootCompleted' >/dev/null 51 local t=$($adb shell ls -l $dirname | tr -d '\r' | grep -e "${basename}$" | grep -oe '^.') 62 $adb shell mkdir "$path" 74 $adb shell rm /vendor/overlay/framework/framework-res.apk 75 $adb shell rm /data/resource-cache/vendor@overlay@framework@framework-res.apk@idma [all...] |
/external/chromium_org/build/android/pylib/utils/ |
test_environment.py | 35 """Clean up the test environment, restarting fresh adb and HTTP daemons.""" 39 adb = android_commands.AndroidCommands(device, api_strict_mode=True) 40 # Make sure we restart the host adb server only once. 42 adb.RestartAdbServer() 44 adb.RestartAdbdOnDevice() 45 adb.EnableAdbRoot() 46 adb.WaitForDevicePm()
|
/development/samples/USB/AdbTest/ |
README.txt | 1 AdbTest is a sample program that implements a subset of the adb USB protocol. 2 Currently it only implements the "adb logcat" command and displays the log 5 connecting to multiple devices and running multiple adb commands simultaneously.
|
/external/chromium_org/build/android/ |
adb_run_mojo_shell | 11 adb logcat -c 12 adb shell am start -S \ 16 adb logcat -s MojoShellApplication MojoShellActivity chromium
|
tombstones.py | 23 def _ListTombstones(adb): 27 adb: An instance of AndroidCommands. 32 lines = adb.RunShellCommand('TZ=UTC su -c ls -a -l /data/tombstones') 41 def _GetDeviceDateTime(adb): 45 adb: An instance of AndroidCommands. 50 device_now_string = adb.RunShellCommand('TZ=UTC date') 55 def _GetTombstoneData(adb, tombstone_file): 64 return adb.GetProtectedFileContents('/data/tombstones/' + tombstone_file) 67 def _EraseTombstone(adb, tombstone_file): 73 return adb.RunShellCommandWithSU('rm /data/tombstones/' + tombstone_file [all...] |
adb_android_webview_command_line | 21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null 24 adb shell cat $CMD_LINE_FILE | cut -d " " -f "2-" 2>/dev/null 29 adb shell rm $CMD_LINE_FILE >/dev/null 33 adb shell "echo 'android_webview $*' > $CMD_LINE_FILE" 35 adb shell chmod 0664 $CMD_LINE_FILE
|
adb_chromium_testshell_command_line | 21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null 24 adb shell cat $CMD_LINE_FILE | cut -d " " -f "2-" 2>/dev/null 29 adb shell rm $CMD_LINE_FILE >/dev/null 33 adb shell "echo 'chromium_testshell $*' > $CMD_LINE_FILE" 35 adb shell chmod 0664 $CMD_LINE_FILE
|
adb_content_shell_command_line | 21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null 24 adb shell cat $CMD_LINE_FILE | cut -d " " -f "2-" 2>/dev/null 29 adb shell rm $CMD_LINE_FILE >/dev/null 33 adb shell "echo 'content_shell $*' > $CMD_LINE_FILE" 35 adb shell chmod 0664 $CMD_LINE_FILE
|
/development/scripts/ |
reverse_tether.sh | 27 # export ADB=/path/to/sdk/adb for custom adb 28 ADB="${ADB:-adb} ${SERIAL:+-s $SERIAL}" 76 echo " ADB=$ADB" 84 $ADB wait-for-device 85 $ADB shell "svc usb setFunction rndis [all...] |
/bootable/recovery/minadbd/ |
mutex_list.h | 1 /* the list of mutexes used by adb */ 17 // Sadly logging to /data/adb/adb-... is not thread safe. 18 // After modifying adb.h::D() to count invocations:
|
/external/srec/config/en.us/ |
adb_pull_system_usr_srec_liveaudio.sh | 5 adb pull $TESTDIR/config/en.us/recog4_SHIP_liveaudio.res recog4_SHIP_liveaudio.res
|
/system/core/adb/ |
mutex_list.h | 1 /* the list of mutexes used by adb */ 16 // Sadly logging to /data/adb/adb-... is not thread safe. 17 // After modifying adb.h::D() to count invocations:
|
/external/chromium_org/build/android/pylib/gtest/ |
test_package.py | 20 def ClearApplicationState(self, adb): 24 adb: Instance of AndroidCommands. 28 def CreateCommandLineFileOnDevice(self, adb, test_filter, test_arguments): 32 adb: Instance of AndroidCommands. 38 def GetAllTests(self, adb): 42 adb: Instance of AndroidCommands. 46 def GetGTestReturnCode(self, adb): 49 def SpawnTestProcess(self, adb): 53 adb: Instance of AndroidCommands. 60 def Install(self, adb) [all...] |
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
java_heap_profiler.py | 42 self._browser_backend.adb.Adb().Adb().Pull( 44 self._browser_backend.adb.RunShellCommand( 59 if not self._browser_backend.adb.Adb().FileExistsOnDevice( 61 self._browser_backend.adb.RunShellCommand( 63 self._browser_backend.adb.RunShellCommand( 70 self._browser_backend.adb.RunShellCommand('am dumpheap %s %s' % 77 f = self._browser_backend.adb.Adb().ListPathContents(file_name [all...] |
android_prebuilt_profiler_helper.py | 35 def InstallOnDevice(adb, profiler_binary): 37 adb.Adb().PushIfNeeded(GetHostPath(profiler_binary), 39 adb.Adb().RunShellCommand('chmod 777 ' + GetDevicePath(profiler_binary))
|
netlog_profiler.py | 38 self._browser_backend.adb.Adb().Adb().Pull(output_file, host_output_file) 40 self._browser_backend.adb.Adb().RunShellCommand('rm %s' % output_file)
|
/build/target/board/vbox_x86/ |
README.txt | 6 ADB via ethernet works with this target. You can use 'adb install' to
|
/external/chromium_org/build/android/pylib/perf/ |
cache_control.py | 9 def __init__(self, adb): 10 self._adb = adb
|
thermal_throttle.py | 14 def IsSupported(adb): 15 return adb.FileExistsOnDevice(OmapThrottlingDetector.OMAP_TEMP_FILE) 17 def __init__(self, adb): 18 self._adb = adb 38 def IsSupported(adb): 39 return adb.FileExistsOnDevice('/sys/bus/exynos5-core') 41 def __init__(self, adb): 66 def __init__(self, adb): 67 self._adb = adb 70 if OmapThrottlingDetector.IsSupported(adb) [all...] |
/sdk/bash_completion/ |
README | 9 source sdk/bash_completion/adb 13 . sdk/bash_completion/adb
|
/cts/suite/audio_quality/lib/src/ |
Adb.h | 22 /** ADB interface to set port forwarding and launch client app */ 23 class Adb { 25 /// device: device number typically passed in adb's -s argument. 26 /// if device string is empty, adb command will be called without -s option. 27 Adb(const android::String8& device); 28 ~Adb();
|
ClientImpl.cpp | 19 #include "Adb.h" 36 Adb adb(param); 37 if (!adb.setPortForwarding(HOST_TCP_PORT, CLIENT_TCP_PORT)) { 38 LOGE("adb port forwarding failed"); 43 if (!adb.launchClient(clientBinary, componentName)) {
|
/development/ide/emacs/ |
android-host.el | 27 ;; (global-set-key [f8] 'android-adb-sync) 30 ;; M-x android-adb-sync 33 ;; C-x a a android-adb-root 34 ;; C-x a r android-adb-remount 35 ;; C-x a s android-adb-sync 36 ;; C-x a b android-adb-shell-reboot-bootloader 56 (define-key map (kbd "a") 'android-adb-root) 57 (define-key map (kbd "r") 'android-adb-remount) 58 (define-key map (kbd "s") 'android-adb-sync) 59 (define-key map (kbd "b") 'android-adb-shell-reboot-bootloader [all...] |
/external/qemu/android/ |
adb-server.h | 21 * Encapsulates a socket server that is bound to ADB port, and bridges ADB host 22 * connections and data to ADB daemon running inside the guest. 25 /* Callback to be invoked wheh host ADB gets connected with the guest ADB. 36 /* Callback to be invoked wheh the host ADB sends data to the guest ADB. 42 * the guest ADB. This pointer must be used for further operations on the 51 /* Callback to be invoked wheh the host ADB gets disconnected. 57 * the guest ADB. This pointer must be used for further operations on th [all...] |
/external/chromium_org/chrome/test/chromedriver/chrome/ |
device_manager.h | 17 class Adb; 38 Adb* adb, 48 Adb* adb_; 56 explicit DeviceManager(Adb* adb); 75 Adb* adb_;
|