Home | History | Annotate | Download | only in controllers

Lines Matching refs:AndroidDevice

39 ACTS_CONTROLLER_CONFIG_NAME = "AndroidDevice"
74 """Creates AndroidDevice controller objects.
81 A list of AndroidDevice objects.
107 """Cleans up AndroidDevice objects.
110 ads: A list of AndroidDevice objects.
120 """Get information on a list of AndroidDevice objects.
123 ads: A list of AndroidDevice objects.
126 A list of dict, each representing info for an AndroidDevice objects.
140 ads: A list of AndroidDevice objects.
149 """Starts long running services on multiple AndroidDevice objects.
151 If any one AndroidDevice object fails to start services, cleans up all
152 existing AndroidDevice objects and their services.
155 ads: A list of AndroidDevice objects whose services to start.
213 """Create AndroidDevice instances from a list of serials.
219 A list of AndroidDevice objects.
223 results.append(AndroidDevice(s))
228 """Create AndroidDevice instances from a list of json configs.
237 A list of AndroidDevice objects.
245 "Required value 'serial' is missing in AndroidDevice config %s."
252 ad = AndroidDevice(serial, ssh_connection=ssh_connection)
259 """Create AndroidDevice instances for all attached android devices.
265 A list of AndroidDevice objects each representing an android device
275 """Finds the AndroidDevice instances from a list that match certain
279 ads: A list of AndroidDevice instances.
280 func: A function that takes an AndroidDevice object and returns True
284 A list of AndroidDevice instances that satisfy the filter condition.
294 """Finds a unique AndroidDevice instance from a list that has specific
302 ads: A list of AndroidDevice instances.
303 kwargs: keyword arguments used to filter AndroidDevice instances.
306 The target AndroidDevice instance.
342 ads: A list of AndroidDevice instances.
354 class AndroidDevice:
367 AndroidDevice instance.
380 self.log_path = os.path.join(log_path_base, 'AndroidDevice%s' % serial)
401 """Cleans up the AndroidDevice object and releases any resources it
561 """Add attributes to the AndroidDevice object based on json config.
606 >>> ad = AndroidDevice()
610 >>> ad = AndroidDevice()
889 out_name = "AndroidDevice%s_%s" % (
1014 """Terminate all sl4a sessions on the AndroidDevice instance.
1401 msg = "[AndroidDevice|%s] %s" % (self.extra["serial"], msg)