Home | History | Annotate | Download | only in controllers

Lines Matching full:androiddevice

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.
178 A list of AndroidDevice objects.
182 results.append(AndroidDevice(s))
187 """Create AndroidDevice instances from a list of json configs.
196 A list of AndroidDevice objects.
205 'AndroidDevice config %s.') % (keys.ConfigKeys.IKEY_SERIAL,
212 'AndroidDevice config %s.',
216 ad = AndroidDevice(serial, product_type)
223 """Create AndroidDevice instances for all attached android devices.
229 A list of AndroidDevice objects each representing an android device
239 """Finds the AndroidDevice instances from a list that match certain
243 ads: A list of AndroidDevice instances.
244 func: A function that takes an AndroidDevice object and returns True
248 A list of AndroidDevice instances that satisfy the filter condition.
258 """Finds a unique AndroidDevice instance from a list that has specific
266 ads: A list of AndroidDevice instances.
267 kwargs: keyword arguments used to filter AndroidDevice instances.
270 The target AndroidDevice instance.
305 ads: A list of AndroidDevice instances.
318 class AndroidDevice(object):
331 [AndroidDevice|<serial>]
362 self.log_path = os.path.join(base_log_path, "AndroidDevice%s" % serial)
386 """Cleans up the AndroidDevice object and releases any resources it
476 """Add attributes to the AndroidDevice object based on json config.
714 """Start HAL agent on the AndroidDevice.
780 """Stop the HAL agent running on the AndroidDevice.
913 """Terminate all sl4a sessions on the AndroidDevice instance.
932 AndroidDevice object.
938 We are adding the prefix "[AndroidDevice|<serial>]" to all log lines.
945 msg = "[AndroidDevice|%s] %s" % (self.extra["serial"], msg)