HomeSort by relevance Sort by last modified time
    Searched full:device_serial (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium_org/chrome/test/chromedriver/chrome/
adb.h 18 virtual Status ForwardPort(const std::string& device_serial,
21 virtual Status SetCommandLineFile(const std::string& device_serial,
25 virtual Status CheckAppInstalled(const std::string& device_serial,
27 virtual Status ClearAppData(const std::string& device_serial,
29 virtual Status SetDebugApp(const std::string& device_serial,
31 virtual Status Launch(const std::string& device_serial,
34 virtual Status ForceStop(const std::string& device_serial,
36 virtual Status GetPidByName(const std::string& device_serial,
adb_impl.h 30 virtual Status ForwardPort(const std::string& device_serial,
33 virtual Status SetCommandLineFile(const std::string& device_serial,
37 virtual Status CheckAppInstalled(const std::string& device_serial,
39 virtual Status ClearAppData(const std::string& device_serial,
41 virtual Status SetDebugApp(const std::string& device_serial,
43 virtual Status Launch(const std::string& device_serial,
46 virtual Status ForceStop(const std::string& device_serial,
48 virtual Status GetPidByName(const std::string& device_serial,
55 Status ExecuteHostCommand(const std::string& device_serial,
58 Status ExecuteHostShellCommand(const std::string& device_serial,
    [all...]
adb_impl.cc 100 const std::string& device_serial, int local_port,
104 device_serial,
113 device_serial + ": " + response);
116 Status AdbImpl::SetCommandLineFile(const std::string& device_serial,
124 device_serial,
133 command_line_file + " on device " + device_serial);
138 const std::string& device_serial, const std::string& package) {
141 Status status = ExecuteHostShellCommand(device_serial, command, &response);
146 device_serial);
151 const std::string& device_serial, const std::string& package)
    [all...]
device_manager.h 37 Device(const std::string& device_serial,
64 Status AcquireSpecificDevice(const std::string& device_serial,
68 void ReleaseDevice(const std::string& device_serial);
70 Device* LockDevice(const std::string& device_serial);
71 bool IsDeviceLocked(const std::string& device_serial);
device_manager_unittest.cc 28 virtual Status ForwardPort(const std::string& device_serial,
34 virtual Status SetCommandLineFile(const std::string& device_serial,
41 virtual Status CheckAppInstalled(const std::string& device_serial,
46 virtual Status ClearAppData(const std::string& device_serial,
51 virtual Status SetDebugApp(const std::string& device_serial,
56 virtual Status Launch(const std::string& device_serial,
62 virtual Status ForceStop(const std::string& device_serial,
67 virtual Status GetPidByName(const std::string& device_serial,
device_manager.cc 24 const std::string& device_serial, Adb* adb,
26 : serial_(device_serial),
185 const std::string& device_serial, scoped_ptr<Device>* device) {
191 if (std::find(devices.begin(), devices.end(), device_serial) == devices.end())
193 "Device " + device_serial + " is not online");
196 if (IsDeviceLocked(device_serial)) {
198 "Device " + device_serial + " is already in use");
200 device->reset(LockDevice(device_serial));
206 void DeviceManager::ReleaseDevice(const std::string& device_serial) {
208 active_devices_.remove(device_serial);
    [all...]
  /external/chromium_org/build/android/
host_heartbeat.py 24 for device_serial in devices:
25 device_utils.DeviceUtils(device_serial).RunShellCommand(
  /external/chromium_org/third_party/skia/platform_tools/android/bin/
android_run_skia 27 $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}
android_setup.sh 19 DEVICE_SERIAL="-s $2"
203 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5 $ANDROID_SRC`
212 $ADB $DEVICE_SERIAL pull $ANDROID_SRC $HOST_DST
216 $ADB $DEVICE_SERIAL pull $ANDROID_SRC $HOST_DST
230 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld $ANDROID_DST`
238 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld $ANDROID_DST`
241 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5 $ANDROID_DST`
250 $ADB $DEVICE_SERIAL push $HOST_SRC $ANDROID_DST
259 $ADB $DEVICE_SERIAL shell mkdir -p $ANDROID_DST
263 $ADB $DEVICE_SERIAL shell mkdir -p "$(dirname "$ANDROID_DST")
    [all...]
android_install_apk 45 $ADB ${DEVICE_SERIAL} uninstall com.skia > /dev/null
49 $ADB ${DEVICE_SERIAL} install ${installOptions} ${SKIA_OUT}/${BUILDTYPE}/android/bin/SkiaAndroid.apk
  /external/skia/platform_tools/android/bin/
android_run_skia 24 $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}
android_install_apk 45 $ADB ${DEVICE_SERIAL} uninstall com.skia > /dev/null
49 $ADB ${DEVICE_SERIAL} install ${installOptions} ${SKIA_OUT}/${BUILDTYPE}/android/bin/SkiaAndroid.apk
android_setup.sh 15 DEVICE_SERIAL="-s $2"
184 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5 $ANDROID_SRC`
193 $ADB $DEVICE_SERIAL pull $ANDROID_SRC $HOST_DST
197 $ADB $DEVICE_SERIAL pull $ANDROID_SRC $HOST_DST
211 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld $ANDROID_DST`
218 ANDROID_LS=`$ADB $DEVICE_SERIAL shell ls -ld $ANDROID_DST`
221 ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5 $ANDROID_DST`
230 $ADB $DEVICE_SERIAL push $HOST_SRC $ANDROID_DST
234 $ADB $DEVICE_SERIAL shell mkdir -p "$(dirname "$ANDROID_DST")"
235 $ADB $DEVICE_SERIAL push $HOST_SRC $ANDROID_DS
    [all...]
  /external/chromium_org/device/serial/
BUILD.gn 7 # GYP version: device/serial/serial.gyp:device_serial
9 output_name = "device_serial"
serial.gyp 15 # generated cpp files must be listed explicitly in device_serial
28 'target_name': 'device_serial',
97 'device_serial',
  /external/chromium_org/tools/android/forwarder2/
host_forwarder_main.cc 104 void HandleRequest(const std::string& device_serial,
114 base::Unretained(this), device_serial, device_port, host_port,
158 void HandleRequestOnInternalThread(const std::string& device_serial,
162 const int adb_port = GetAdbPortForDevice(device_serial);
180 RemoveAdbPortForDeviceIfNeeded(device_serial);
223 void RemoveAdbPortForDeviceIfNeeded(const std::string& device_serial) {
225 device_serial_to_adb_port_map_.find(device_serial);
239 LOG(INFO) << "Device " << device_serial << " has no more ports.";
240 device_serial_to_adb_port_map_.erase(device_serial);
241 const std::string serial_part = device_serial.empty()
334 std::string device_serial; variable
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/util/
CtsHostStore.java 33 * Note that key is generated in the form of device_serial#class#method name.
53 * @return test key in the form of device_serial#abi#class_name#method_name
  /external/chromium_org/device/
device_tests.gyp 25 'serial/serial.gyp:device_serial',
90 'serial/serial.gyp:device_serial',
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
android_screen_recorder_profiler.py 25 '--device', browser_backend.adb.device_serial()],
  /external/chromium_org/build/android/pylib/
forwarder.py 91 device_serial = str(device)
93 ['--serial-id=' + device_serial, '--map', str(device_port),
116 serial_with_port = (device_serial, device_port)
155 for (device_serial, device_port) in port_map.keys():
156 if adb_serial == device_serial:
287 device_serial = str(device)
288 if device_serial in self._initialized_devices:
300 self._initialized_devices.add(device_serial)
  /external/chromium_org/build/android/pylib/base/
base_test_runner.py 27 def __init__(self, device_serial, tool, push_deps=True,
36 self.device_serial = device_serial
37 self.device = device_utils.DeviceUtils(device_serial)
  /external/chromium_org/chromeos/dbus/
shill_manager_client_unittest.cc 328 arguments.push_back("device_serial");
342 properties.device_serial = arguments[4];
367 arguments.push_back("device_serial");
385 properties.device_serial = arguments[4];
411 arguments.push_back("device_serial");
426 properties.device_serial = arguments[4];
shill_manager_client.cc 157 writer.AppendString(properties.device_serial);
176 writer.AppendString(properties.device_serial);
196 writer.AppendString(properties.device_serial);
  /ndk/
ndk-gdb.py 121 DEVICE_SERIAL = ''
134 global VERBOSE, DEBUG_PORT, DELAY, DEVICE_SERIAL
203 default=DEVICE_SERIAL,
204 dest='device_serial')
251 if args.device_serial != '':
252 DEVICE_SERIAL = args.device_serial
384 global ADB_CMD, ADB_FLAGS, DEVICE_SERIAL
388 if DEVICE_SERIAL != '':
389 fullargs += [DEVICE_SERIAL]
    [all...]
  /external/chromium_org/build/android/pylib/perf/
test_runner.py 197 test_name, self.device_serial, affinity, self._shard_index)
221 self.device_serial))
254 self.device_serial)
273 'device': self.device_serial,

Completed in 623 milliseconds

1 2 3