Searched refs:adb (Results 1 - 25 of 96) sorted by relevance

1234

/external/chromium_org/build/android/
H A Dadb_kill_content_shell11 SHELL_PID_LINES=$(adb shell ps | grep ' org.chromium.content_shell_apk')
19 adb shell kill $SHELL_PID
H A Dadb_android_webview_command_line21 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
H A Dadb_chromium_testshell_command_line21 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
H A Dadb_content_shell_command_line21 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
H A Dadb_run_content_shell11 adb shell am start \
H A Dtombstones.py23 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
[all...]
H A Dadb_run_android_webview_shell11 adb shell am start \
H A Dadb_run_chromium_testshell11 adb shell am start \
/external/srec/config/en.us/
H A Dadb_pull_system_usr_srec_bothtags5.sh5 adb pull $TESTDIR/config/en.us/out_SHIP_bothtags5.txt out_SHIP_bothtags5.txt
6 adb pull $TESTDIR/config/en.us/recog4_SHIP_bothtags5.res recog4_SHIP_bothtags5.res
8 adb pull $TESTDIR/config/en.us/linux_ship_a1__VCE_Pete_Gonzalez.raw linux_ship_a1__VCE_Pete_Gonzalez.raw
9 adb pull $TESTDIR/config/en.us/linux_ship_a2__VCE_Andrew_Evans.raw linux_ship_a2__VCE_Andrew_Evans.raw
10 adb pull $TESTDIR/config/en.us/linux_ship_a3__VCE_Peter_Wilson.raw linux_ship_a3__VCE_Peter_Wilson.raw
11 adb pull $TESTDIR/config/en.us/linux_ship_a4__VCE_Edgar_Young.raw linux_ship_a4__VCE_Edgar_Young.raw
12 adb pull $TESTDIR/config/en.us/linux_ship_a5__VCE_John_Martinez.raw linux_ship_a5__VCE_John_Martinez.raw
H A Dadb_pull_system_usr_srec_bothtags5_from_saved.sh5 adb pull $TESTDIR/config/en.us/out_SHIP_bothtags5_from_saved.txt out_SHIP_bothtags5_from_saved.txt
6 adb pull $TESTDIR/config/en.us/recog4_SHIP_bothtags5_from_saved.res recog4_SHIP_bothtags5_from_saved.res
8 adb pull $TESTDIR/config/en.us/linux_ship_a1__VCE_Pete_Gonzalez_from_saved.raw linux_ship_a1__VCE_Pete_Gonzalez_from_saved.raw
9 adb pull $TESTDIR/config/en.us/linux_ship_a2__VCE_Andrew_Evans_from_saved.raw linux_ship_a2__VCE_Andrew_Evans_from_saved.raw
10 adb pull $TESTDIR/config/en.us/linux_ship_a3__VCE_Peter_Wilson_from_saved.raw linux_ship_a3__VCE_Peter_Wilson_from_saved.raw
11 adb pull $TESTDIR/config/en.us/linux_ship_a4__VCE_Edgar_Young_from_saved.raw linux_ship_a4__VCE_Edgar_Young_from_saved.raw
12 adb pull $TESTDIR/config/en.us/linux_ship_a5__VCE_John_Martinez_from_saved.raw linux_ship_a5__VCE_John_Martinez_from_saved.raw
14 adb pull $TESTDIR/config/en.us/bothtags5_saved.g2g bothtags5_saved.g2g
H A Dadb_pull_system_usr_srec_change_sample_rate2.sh5 adb pull $TESTDIR/config/en.us/out_SHIP_change_sample_rate2.txt out_SHIP_change_sample_rate2.txt
6 adb pull $TESTDIR/config/en.us/recog4_SHIP_change_sample_rate2.res recog4_SHIP_change_sample_rate2.res
H A Dadb_pull_system_usr_srec_set_get_param.sh5 adb pull $TESTDIR/config/en.us/out_SHIP_set_get_param.txt out_SHIP_set_get_param.txt
6 adb pull $TESTDIR/config/en.us/recog4_SHIP_set_get_param.res recog4_SHIP_set_get_param.res
H A Dadb_pull_system_usr_srec_liveaudio.sh5 adb pull $TESTDIR/config/en.us/recog4_SHIP_liveaudio.res recog4_SHIP_liveaudio.res
/external/chromium_org/build/android/pylib/gtest/
H A Dtest_package_apk.py47 def _CreateCommandLineFileOnDevice(self, adb, options):
52 adb.PushIfNeeded(command_line_file.name,
63 def _ClearFifo(self, adb):
64 adb.RunShellCommand('rm -f ' + self._GetFifo())
66 def _WatchFifo(self, adb, timeout, logfile=None):
68 if adb.FileExistsOnDevice(self._GetFifo()):
75 args = shlex.split(adb.Adb()._target_arg)
77 return pexpect.spawn('adb', args, timeout=timeout, logfile=logfile)
79 def _StartActivity(self, adb):
80 adb
[all...]
H A Dtest_package.py20 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...]
H A Dtest_package_exe.py37 def GetGTestReturnCode(self, adb):
42 if not adb.Adb().Pull(
57 def _AddNativeCoverageExports(self, adb):
72 adb.GetExternalStorage())
77 def ClearApplicationState(self, adb):
78 adb.KillAllBlocking(self.suite_name, 30)
81 def CreateCommandLineFileOnDevice(self, adb, test_filter, test_arguments):
84 # We need to capture the exit status from the script since adb shell won't
91 self._AddNativeCoverageExports(adb),
98 adb
[all...]
/external/chromium_org/v8/tools/
H A Dandroid-ll-prof.sh53 adb -p "$DEPLOY" sync data
55 adb shell "cd /data/local/tmp/v8;\
59 adb pull /data/local/tmp/v8/v8.log .
60 adb pull /data/local/tmp/v8/v8.log.ll .
61 adb pull /data/perf.data .
/external/chromium_org/build/android/gyp/util/
H A Dbuild_device.py29 self.adb = android_commands.AndroidCommands(self.id)
32 return self.adb.RunShellCommand(*args, **kwargs)
35 return self.adb.PushIfNeeded(*args, **kwargs)
41 return self.adb.Install(*args, **kwargs)
56 adb = android_commands.AndroidCommands(id)
59 is_online = adb.IsOnline()
62 cmd_output = adb.RunShellCommand(cmd)
67 has_root = adb.EnableAdbRoot()
69 cmd_output = adb.RunShellCommand(cmd)
/external/chromium_org/third_party/openssl/openssl/android.testssl/
H A Dtestssl.sh30 reqcmd="adb shell /system/bin/openssl req"
31 x509cmd="adb shell /system/bin/openssl x509 $digest"
45 adb remount
46 adb shell rm -r $device
47 adb shell mkdir $device
51 adb push . $device
55 adb shell "echo \"string to make the random number generator think it has entropy\" >> $device/.rnd"
77 adb shell rm -r $device
/external/chromium_org/third_party/openssl/openssl/patches/
H A Dtestssl.sh30 reqcmd="adb shell /system/bin/openssl req"
31 x509cmd="adb shell /system/bin/openssl x509 $digest"
45 adb remount
46 adb shell rm -r $device
47 adb shell mkdir $device
51 adb push . $device
55 adb shell "echo \"string to make the random number generator think it has entropy\" >> $device/.rnd"
77 adb shell rm -r $device
/external/openssl/android.testssl/
H A Dtestssl.sh30 reqcmd="adb shell /system/bin/openssl req"
31 x509cmd="adb shell /system/bin/openssl x509 $digest"
45 adb remount
46 adb shell rm -r $device
47 adb shell mkdir $device
51 adb push . $device
55 adb shell "echo \"string to make the random number generator think it has entropy\" >> $device/.rnd"
77 adb shell rm -r $device
/external/openssl/patches/
H A Dtestssl.sh30 reqcmd="adb shell /system/bin/openssl req"
31 x509cmd="adb shell /system/bin/openssl x509 $digest"
45 adb remount
46 adb shell rm -r $device
47 adb shell mkdir $device
51 adb push . $device
55 adb shell "echo \"string to make the random number generator think it has entropy\" >> $device/.rnd"
77 adb shell rm -r $device
/external/chromium_org/build/android/pylib/
H A Dvalgrind_tools.py31 def SetChromeTimeoutScale(adb, scale):
36 adb.RunShellCommand('rm %s' % path)
38 adb.SetProtectedFileContents(path, '%f' % scale)
91 def __init__(self, adb):
92 self._adb = adb
101 adb.SetUtilWrapper(self.GetUtilWrapper())
148 def __init__(self, adb):
149 self._adb = adb
197 def __init__(self, adb):
198 super(MemcheckTool, self).__init__(adb)
[all...]
H A Dforwarder.py67 def Map(port_pairs, adb, build_type='Debug', tool=None):
76 adb: An AndroidCommands instance.
84 tool = valgrind_tools.CreateTool(None, adb)
87 instance._InitDeviceLocked(adb, tool)
89 device_serial = adb.Adb().GetSerialNumber()
120 def UnmapDevicePort(device_port, adb):
124 adb: An AndroidCommands instance.
128 Forwarder._UnmapDevicePortLocked(device_port, adb)
131 def UnmapAllDevicePorts(adb):
135 adb
[all...]
/external/chromium_org/build/android/pylib/base/
H A Dbase_test_runner.py44 self.adb = android_commands.AndroidCommands(device=device)
45 self.tool = CreateTool(tool, self.adb)
50 self.flags = FlagChanger(self.adb)
64 self.adb.SetFileContents(self.adb.GetExternalStorage() + '/' +
92 push_size_before = self.adb.GetPushSizeInfo()
96 push_size_after = self.adb.GetPushSizeInfo()
110 self.adb.RemovePushedFiles()
133 Forwarder.Map(port_pairs, self.adb, self.build_type, self.tool)
138 Forwarder.UnmapDevicePort(device_port, self.adb)
[all...]

Completed in 244 milliseconds

1234