Home
last modified time | relevance | path

Searched refs:serials (Results 1 – 10 of 10) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DFastbootHelper.java105 Set<String> serials = new HashSet<String>(); in parseDevices() local
109 serials.add(fastbootMatcher.group(1)); in parseDevices()
111 return serials; in parseDevices()
DDeviceManager.java525 Set<String> serials = fastboot.getDevices(); in addFastbootDevices() local
526 for (String serial : serials) { in addFastbootDevices()
1255 Set<String> serials = fastboot.getDevices(); in run() local
1256 if (serials != null) { in run()
1258 mManagedDeviceList.updateFastbootStates(serials); in run()
1260 for (String serial : serials) { in run()
DDeviceSelectionOptions.java445 Collection<String> serials = getSerials(device); in matches() local
451 if (!serials.isEmpty() && in matches()
452 !serials.contains(device.getSerialNumber())) { in matches()
DManagedDeviceList.java132 public void updateFastbootStates(Set<String> serials) {
137 if (serials.contains(d.getSerialNumber())) {
/tools/test/connectivity/acts/framework/acts/controllers/
Dnative_android_device.py46 def get_instances(serials, ): argument
57 for s in serials:
Dandroid_device.py203 def get_instances(serials): argument
213 for s in serials:
320 serials = [ad.serial for ad in filtered]
321 raise ValueError("More than one device matched: %s" % serials)
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DInvocationContext.java348 public void addSerialsFromShard(Integer index, List<String> serials) { in addSerialsFromShard() argument
353 mShardSerials.put(index, serials); in addSerialsFromShard()
DIInvocationContext.java191 public void addSerialsFromShard(Integer index, List<String> serials); in addSerialsFromShard() argument
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/retry/
DRetryRescheduler.java135 List<String> serials = mConfiguration.getDeviceRequirements().getSerials(); in run() local
136 originalConfig.getDeviceRequirements().setSerial(serials.toArray(new String[0])); in run()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DConfigurationFactoryTest.java1248 List<String> serials = new ArrayList<String>(); in testCreateConfigurationFromArgs_old_config_with_deviceHolder() local
1249 serials.add("test"); in testCreateConfigurationFromArgs_old_config_with_deviceHolder()
1250 assertEquals(serials, config.getDeviceRequirements().getSerials(null)); in testCreateConfigurationFromArgs_old_config_with_deviceHolder()
1252 serials, in testCreateConfigurationFromArgs_old_config_with_deviceHolder()