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

1 2 3

  /tools/test/connectivity/acts/tests/google/fugu/
fugu_pairing_test.json 11 "AndroidDevice": ["7A18F48B"],
17 "AndroidDevice": ["164FE498"],
23 "AndroidDevice": ["B8B20856"],
29 "AndroidDevice": ["121A69F0"],
35 "AndroidDevice": ["BBDAC5ED"],
  /test/vts/testcases/framework_test/
SampleSl4aTest.config 7 "AndroidDevice": [{"serial": "<serial>", "product_type": "angler", "enable_sl4a": true, "enable_vts_agent": false}]
  /tools/test/connectivity/acts/framework/
sample_config.json 7 "AndroidDevice": ["<serial>", "<serial>"]
12 "AndroidDevice": [{"serial": "<serial>", "label": "caller"},
  /tools/test/connectivity/acts/tests/google/bt/config/
sample_basic.json 7 "AndroidDevice": ["<serial_1>", "<serial_2>"]
sample_mass_beacon_deployment.json 7 "AndroidDevice": ["<dut_serial>", "<serial_1>", "<serial_2>", "<serial_n>"]
  /tools/test/connectivity/acts/tests/google/tel/config/
sample_testbed_configs.json 7 "AndroidDevice": [{"serial" : "<serial_1>", "adb_logcat_param": "-b all"},
13 "AndroidDevice": [{"serial" : "<serial_1>", "adb_logcat_param": "-b all"},
20 "AndroidDevice": [{"serial" : "<serial_1>", "adb_logcat_param": "-b all"},
36 "AndroidDevice": [
53 "AndroidDevice": [{"serial" : "<serial_1>", "adb_logcat_param": "-b all"}],
  /tools/test/connectivity/acts/framework/tests/
acts_android_device_test.py 45 """Generates a list of mock AndroidDevice objects.
50 num: An integer that is the number of mock AndroidDevice objects to
55 ad = mock.MagicMock(name="AndroidDevice", serial=i, h_port=None)
103 logging.log_path, "AndroidDevice%s" % self.serial,
104 "test_something", "AndroidDevice%s_sometime" % self.serial)
155 # These tests use mock AndroidDevice instances.
212 """Makes sure when an AndroidDevice fails to start some services, all
213 AndroidDevice objects get cleaned up.
230 # Tests for android_device.AndroidDevice class.
239 """Verifies the AndroidDevice object's basic attributes are correctl
    [all...]
acts_test_runner_test.py 207 This requires using a built-in controller module. Using AndroidDevice
217 mock_test_config[tb_key]["AndroidDevice"] = [
  /test/vts/utils/python/controllers/
android_device.py 41 VTS_CONTROLLER_CONFIG_NAME = "AndroidDevice"
65 """Creates AndroidDevice controller objects.
73 A list of AndroidDevice objects.
98 """Cleans up AndroidDevice objects.
101 ads: A list of AndroidDevice objects.
111 """Starts long running services on multiple AndroidDevice objects.
113 If any one AndroidDevice object fails to start services, cleans up all
114 existing AndroidDevice objects and their services.
117 ads: A list of AndroidDevice objects whose services to start.
172 """Create AndroidDevice instances from a list of serials
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
android_platform_backend_unittest.py 49 android_device.AndroidDevice('12345'))
57 android_device.AndroidDevice('12345'))
71 android_device.AndroidDevice('12345'))
81 android_device.AndroidDevice('1234'))
112 android_device.AndroidDevice('success'))
124 android_device.AndroidDevice('success'))
131 android_device.AndroidDevice('success'))
199 android_device.AndroidDevice('1234'))
213 android_device.AndroidDevice('1234'))
android_device.py 19 class AndroidDevice(device.Device):
30 super(AndroidDevice, self).__init__(
114 return AndroidDevice(
118 devices = AndroidDevice.GetAllConnectedDevices(blacklist)
178 devices = AndroidDevice.GetAllConnectedDevices(blacklist)
  /tools/test/connectivity/acts/framework/acts/controllers/
native_android_device.py 17 from acts.controllers.android_device import AndroidDevice
47 """Create AndroidDevice instances from a list of serials.
54 A list of AndroidDevice objects.
66 class NativeAndroidDevice(AndroidDevice):
android_device.py 39 ACTS_CONTROLLER_CONFIG_NAME = "AndroidDevice"
67 """Creates AndroidDevice controller objects.
74 A list of AndroidDevice objects.
98 """Cleans up AndroidDevice objects.
101 ads: A list of AndroidDevice objects.
111 """Get information on a list of AndroidDevice objects.
114 ads: A list of AndroidDevice objects.
117 A list of dict, each representing info for an AndroidDevice objects.
128 """Starts long running services on multiple AndroidDevice objects.
130 If any one AndroidDevice object fails to start services, cleans up al
    [all...]
relay_device_controller.py 50 relay_devices: A list of AndroidDevice objects.
  /test/vts-testcase/kernel/cpu_profiling/
CpuProfilingTest.py 36 required_params = ["AndroidDevice"]
38 self.product_type = self.AndroidDevice[0]['product_type']
  /external/chromium-trace/catapult/telemetry/docs/pydoc/
telemetry.internal.platform.android_device.html 45 <dt><font face="helvetica, arial"><a href="telemetry.internal.platform.android_device.html#AndroidDevice">AndroidDevice</a>
53 <font color="#000000" face="helvetica, arial"><a name="AndroidDevice">class <strong>AndroidDevice</strong></a>(<a href="telemetry.internal.platform.device.html#Device">telemetry.internal.platform.device.Device</a>)</font></td></tr>
66 <dd><a href="telemetry.internal.platform.android_device.html#AndroidDevice">AndroidDevice</a></dd>
72 <dl><dt><a name="AndroidDevice-__init__"><strong>__init__</strong></a>(self, device_id, enable_performance_mode<font color="#909090">=True</font>)</dt></dl>
76 <dl><dt><a name="AndroidDevice-GetAllConnectedDevices"><strong>GetAllConnectedDevices</strong></a>(cls, blacklist)<font color="#909090"><font face="helvetica, arial"> from <a href="__builtin__.html#type">__builtin__.type</a></font></font></dt></dl>
  /test/vts/testcases/host/reboot/RebootTest/
RebootTest.py 29 dut: AndroidDevice, the device under test as config
  /tools/test/connectivity/acts/tests/google/wifi/
WifiIOTTest.py 84 params: A tuple of network info and AndroidDevice object.
100 params: A tuple of network info and AndroidDevice object.
122 params: A tuple of network info and AndroidDevice object.
  /development/python-packages/adb/
device.py 74 return AndroidDevice(devices[0], product, adb_path)
80 return AndroidDevice(serial, product, adb_path)
85 """Get a uniquely identified AndroidDevice if one is available.
98 An AndroidDevice associated with the first non-None identifier in the
130 """Get the unique USB-connected AndroidDevice if it is available.
137 An AndroidDevice associated with the unique USB-connected device.
143 """Get the unique emulator AndroidDevice if it is available.
150 An AndroidDevice associated with the unique running emulator.
243 class AndroidDevice(object):
  /test/vts/runners/host/
keys.py 62 IKEY_ANDROID_DEVICE = "AndroidDevice"
  /test/vts/testcases/host/reboot/RebootRootRemountTest/
RebootRootRemountTest.py 32 dut: AndroidDevice, the device under test as config.
  /tools/test/connectivity/acts/framework/acts/
keys.py 39 key_android_device = "AndroidDevice"
  /cts/hostsidetests/theme/
android_device.py 27 class androidDevice(object):
  /test/vts/testcases/template/hal_hidl_gtest/
hal_hidl_gtest.py 36 _dut: AndroidDevice, the device under test as config
  /test/vts/utils/python/precondition/
precondition_utils.py 29 dut: the AndroidDevice under test.

Completed in 640 milliseconds

1 2 3