HomeSort by relevance Sort by last modified time
    Searched full:devices (Results 526 - 550 of 10871) sorted by null

<<21222324252627282930>>

  /test/framework/harnesses/host_controller/
tfc_host_controller_test.py 75 devices = self._host_controller.ListAvailableDevices()
76 self.assertEqual([], devices)
80 devices = self._host_controller.ListAvailableDevices()
81 self.assertEqual([self._AVAILABLE_DEVICE], devices)
86 devices = self._host_controller.ListDevices()
88 devices)
  /device/generic/car/common/
car_core_hardware.xml 22 <!-- These are the hardware components that all handheld devices
23 must include. Devices with optional hardware must also include extra
26 Handheld devices include phones, mobile Internet devices (MIDs),
28 devices.
59 <!-- devices with GPS must include android.hardware.location.gps.xml -->
60 <!-- devices with an autofocus camera and/or flash must include either
63 <!-- devices with a front facing camera must include
65 <!-- devices with WiFi must also include android.hardware.wifi.xml -->
66 <!-- devices that support multitouch must include the most appropriate on
    [all...]
  /device/generic/goldfish/data/etc/
handheld_core_hardware.xml 17 <!-- These are the hardware components that all handheld devices
18 must include. Devices with optional hardware must also include extra
21 Handheld devices include phones, mobile Internet devices (MIDs),
23 devices.
80 <!-- devices with GPS must include android.hardware.location.gps.xml -->
81 <!-- devices with an autofocus camera and/or flash must include either
84 <!-- devices with a front facing camera must include
86 <!-- devices with WiFi must also include android.hardware.wifi.xml -->
87 <!-- devices that support multitouch must include the most appropriate on
    [all...]
  /external/autotest/client/common_lib/cros/fake_device_server/
devices.py 5 """Module contains a simple implementation of the devices RPC."""
20 DEVICES_PATH = 'devices'
23 class Devices(resource_method.ResourceMethod):
42 @param resource: A resource delegate for storing devices.
47 super(Devices, self).__init__(resource)
99 """GET .../(device_id) gets device info or lists all devices.
101 Supports both the GET / LIST commands for devices. List lists all
102 devices a user has access to, however, this implementation just returns
103 all devices.
118 listing['devices'] = self.resource.get_data_vals(
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/tools/
unlock_bootloader.py 6 """A script to open the unlock bootloader on-screen prompt on all devices."""
29 # Reboot all devices into bootloader if they aren't there already.
31 for d in adb_wrapper.AdbWrapper.Devices(desired_state=None):
46 # Wait for the rebooted devices to show up in fastboot.
48 logging.info('Waiting for devices to reboot...')
53 fastbooted_devices = set([str(d) for d in fastboot.Fastboot.Devices()])
55 logging.info('All devices in fastboot.')
135 reboot_into_bootloader(args.devices)
136 devices = [
137 d for d in fastboot.Fastboot.Devices() if not args.devices o
    [all...]
  /frameworks/base/core/java/android/hardware/usb/
UsbConstants.java 117 * USB class for audio devices.
121 * USB class for communication devices.
125 * USB class for human interface devices (for example, mice and keyboards).
129 * USB class for physical devices.
133 * USB class for still image devices (digital cameras).
141 * USB class for mass storage devices.
149 * USB class for CDC devices (communications device class).
153 * USB class for content smart card devices.
157 * USB class for content security devices.
161 * USB class for video devices
    [all...]
  /frameworks/native/data/etc/
car_core_hardware.xml 17 <!-- These are the hardware components that all handheld devices
18 must include. Devices with optional hardware must also include extra
21 Handheld devices include phones, mobile Internet devices (MIDs),
23 devices.
52 <!-- devices with GPS must include android.hardware.location.gps.xml -->
53 <!-- devices with an autofocus camera and/or flash must include either
56 <!-- devices with a front facing camera must include
58 <!-- devices with WiFi must also include android.hardware.wifi.xml -->
59 <!-- devices that support multitouch must include the most appropriate on
    [all...]
tablet_core_hardware.xml 17 <!-- These are the hardware components that all handheld devices
18 must include. Devices with optional hardware must also include extra
21 Handheld devices include phones, mobile Internet devices (MIDs),
23 devices.
61 <!-- devices with GPS must include android.hardware.location.gps.xml -->
62 <!-- devices with a rear-facing camera must include one of these as appropriate:
66 <!-- devices with a front facing camera must include
68 <!-- devices with WiFi must also include android.hardware.wifi.xml -->
69 <!-- devices with an ambient light sensor must also includ
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DeviceMenuListener.java 30 import com.android.sdklib.devices.Device;
104 // Group the devices by manufacturer, then put them in the menu.
105 // If we don't have anything but Nexus devices, group them together rather than
112 List<Device> devices; local
119 devices = manufacturers.get(device.getManufacturer());
121 devices = new ArrayList<Device>();
122 manufacturers.put(device.getManufacturer(), devices); local
124 devices.add(device);
127 for (List<Device> devices : manufacturers.values()) {
131 item.setText(devices.get(0).getManufacturer())
    [all...]
  /tools/test/connectivity/acts/tests/google/bt/car_bt/
BtCarPairedConnectDisconnectTest.py 17 Test script to test connect and disconnect sequence between two devices which can run
20 Clear up the bonded devices on both bluetooth adapters and bond the DUTs to each other.
23 1.1. Check that devices are connected.
25 2.1 Check that devices are disconnected.
47 # Pair the devices.
55 devices = self.car.droid.bluetoothGetBondedDevices()
57 len(devices), 1,
58 "pair_pri_to_sec succeeded but no bonded devices.")
64 Tests if we can connect two devices over A2dp and then disconnect
67 1. Devices are paired
    [all...]
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
CachedBluetoothDeviceManagerTest.java 144 Collection<CachedBluetoothDevice> devices = mCachedDeviceManager.getCachedDevicesCopy(); local
145 assertThat(devices).contains(cachedDevice1);
146 assertThat(devices).contains(cachedDevice2);
194 Collection<CachedBluetoothDevice> devices = mCachedDeviceManager.getCachedDevicesCopy(); local
195 assertThat(devices).contains(cachedDevice1);
196 assertThat(devices).contains(cachedDevice2);
201 devices = mCachedDeviceManager.getCachedDevicesCopy();
202 assertThat(devices).contains(cachedDevice1);
203 assertThat(devices).doesNotContain(cachedDevice2);
208 devices = mCachedDeviceManager.getCachedDevicesCopy()
262 Collection<CachedBluetoothDevice> devices = mCachedDeviceManager.getCachedDevicesCopy(); local
333 Collection<CachedBluetoothDevice> devices = mCachedDeviceManager.getCachedDevicesCopy(); local
506 Collection<CachedBluetoothDevice> devices = mCachedDeviceManager.getCachedDevicesCopy(); local
543 Collection<CachedBluetoothDevice> devices = mCachedDeviceManager.getCachedDevicesCopy(); local
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0/
sdklib-25.0.0-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-alpha5/
sdklib-25.0.0-alpha5-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-alpha7/
sdklib-25.0.0-alpha7-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-alpha9/
sdklib-25.0.0-alpha9-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-beta2/
sdklib-25.0.0-beta2-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-beta5/
sdklib-25.0.0-beta5-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-beta6/
sdklib-25.0.0-beta6-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-beta7/
sdklib-25.0.0-beta7-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.0.0-rc3/
sdklib-25.0.0-rc3-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.1.0/
sdklib-25.1.0-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.1.0-alpha3/
sdklib-25.1.0-alpha3-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.1.0-alpha4/
sdklib-25.1.0-alpha4-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.1.0-beta1/
sdklib-25.1.0-beta1-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/25.1.0-beta3/
sdklib-25.1.0-beta3-sources.jar 

Completed in 711 milliseconds

<<21222324252627282930>>