HomeSort by relevance Sort by last modified time
    Searched full:devices (Results 51 - 75 of 6373) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/media/midi/
usb_midi_device.h 39 typedef ScopedVector<UsbMidiDevice> Devices;
41 // Factory class for USB-MIDI devices.
42 // Each concrete implementation will find and create devices
46 typedef base::Callback<void(bool result, Devices* devices)> Callback;
48 // Enumerates devices.
49 // Devices that have no USB-MIDI interfaces can be omitted.
51 // devices.
52 // Otherwise |callback| will be called with |false| and empty devices.
  /external/chromium_org/tools/telemetry/telemetry/core/
system_info_unittest.py 16 'devices': [
26 self.assertTrue(len(info.gpu.devices) == 1)
27 self.assertTrue(isinstance(info.gpu.devices[0], gpu_device.GPUDevice))
28 self.assertEquals(info.gpu.devices[0].vendor_id, 1000)
29 self.assertEquals(info.gpu.devices[0].device_id, 2000)
30 self.assertEquals(info.gpu.devices[0].vendor_string, 'a')
31 self.assertEquals(info.gpu.devices[0].device_string, 'b')
37 'devices': [
54 'devices': [{ 'vendor_id': 1000, 'device_id': 2000,
  /development/samples/BluetoothChat/
_index.html 1 <p>This application allows two Android devices to carry out
5 <li>Scanning for other Bluetooth devices</li>
6 <li>Querying the local Bluetooth adapter for paired Bluetooth devices</li>
  /external/chromium_org/android_webview/native/permission/
media_access_permission_request.cc 21 const MediaStreamDevices& devices,
23 if (devices.empty())
27 for (size_t i = 0; i < devices.size(); ++i) {
28 if (devices[i].id == device_id)
29 return &devices[i];
33 return &devices[0];
50 MediaStreamDevices devices; local
52 callback_.Run(devices, content::MEDIA_DEVICE_PERMISSION_DENIED, ui.Pass());
63 devices.push_back(*device);
73 devices.push_back(*device)
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
gnubbycodetypes.js 18 /** All plugged in devices are already enrolled. */
21 /** None of the plugged in devices are enrolled. */
24 /** One or more devices are waiting for touch. */
  /external/chromium_org/build/android/
adb_device_functions.sh 7 # A collection of functions useful for maintaining android devices
23 local DEVICES=$(adb_get_devices -b)
24 local NUM_DEVICES=$(echo $DEVICES | wc -w)
26 echo "Looping over $NUM_DEVICES devices"
28 _adb_multi "$DEVICES" "$*"
45 local DEVICES=$(adb_get_devices)
46 if [[ -z $DEVICES ]]; then
50 for DEVICE in $DEVICES; do
57 # Erases data from any devices visible on adb. To preserve a device,
60 # 2) Run wipe_all_devices to wipe remaining devices
    [all...]
host_heartbeat.py 7 """Sends a heart beat pulse to the currently online Android devices.
8 This heart beat lets the devices know that they are connected to a host.
23 devices = android_commands.GetAttachedDevices()
24 for device_serial in devices:
  /docs/source.android.com/src/
index.jd 29 Android is an open-source software stack for a wide range of mobile devices and a corresponding open-source project led by
31 create custom variants of the Android software stack, port devices and accessories to the Android platform,
32 and ensure your devices are compatible with the Android compatibility definition.
45 <a href="{@docRoot}devices/audio.html">
48 href="{@docRoot}devices/audio.html">Audio section</a></strong> now describes <strong><a
49 href="{@docRoot}devices/audio_attributes.html">Attributes</a></strong> and <strong><a
50 href="{@docRoot}devices/audio_usb.html">USB digital audio</a></strong> support, while a <strong><a
57 <a href="{@docRoot}devices/tech/security/index.html">
60 href="{@docRoot}devices/tech/encryption/index.html">Encryption</a></strong> and <strong><a
61 href="{@docRoot}devices/tech/security/se-linux.html">Security-Enhanced Linux</a></strong> have bee
    [all...]
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/res/values-sw720dp-land/
dimens.xml 3 screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here. -->
  /developers/build/prebuilts/gradle/HorizontalPaging/Application/src/main/res/values/values-sw720dp-land/
dimens.xml 3 screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here. -->
  /developers/build/templates/CardStream/_MODULE_/src/template/res/values-sw720dp-land/
dimens.xml 3 screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here. -->
  /developers/samples/android/ui/views/HorizontalPaging/Application/src/main/res/values/values-sw720dp-land/
dimens.xml 3 screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here. -->
  /development/samples/WiFiDirectDemo/assets/
sample_file.txt 3 Once the devices are connected, the server i.e. groupOwner will listen for incoming connections and write this file (…)
  /development/samples/browseable/BatchStepSensor/res/values-sw720dp-land/
dimens.xml 3 screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here. -->
  /development/samples/browseable/BluetoothLeGatt/
_index.jd 8 to transmit arbitrary data between devices.
  /development/samples/browseable/HorizontalPaging/res/values/values-sw720dp-land/
dimens.xml 3 screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here. -->
  /development/tutorials/MoarRam/res/values-sw600dp/
dimens.xml 5 screen margins) for sw600dp devices (e.g. 7" tablets) here.
  /development/tutorials/MoarRam/res/values-sw720dp-land/
dimens.xml 5 screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here.
  /external/chromium_org/chrome/browser/ui/webui/options/
media_devices_selection_handler.cc 56 const content::MediaStreamDevices& devices) {
57 UpdateDevicesMenu(AUDIO, devices);
61 const content::MediaStreamDevices& devices) {
62 UpdateDevicesMenu(VIDEO, devices);
88 DeviceType type, const content::MediaStreamDevices& devices) {
105 // Build the list of devices to send to JS.
108 for (size_t i = 0; i < devices.size(); ++i) {
110 entry->SetString("name", devices[i].name);
111 entry->SetString("id", devices[i].id);
113 if (devices[i].id == default_device
131 content::MediaStreamDevices devices; local
    [all...]
  /external/chromium_org/components/cloud_devices/common/
cloud_devices_switches.cc 9 // Enable Google Cloud Devices code.
10 const char kEnableCloudDevices[] = "enable-cloud-devices";
21 // The URL of the cloud devices service to use.
22 const char kCloudDevicesURL[] = "cloud-devices-url";
  /external/chromium_org/device/hid/
hid_service_unittest.cc 21 std::vector<HidDeviceInfo> devices; local
22 service->GetDevices(&devices);
23 for (std::vector<HidDeviceInfo>::iterator it = devices.begin();
24 it != devices.end();
  /external/chromium_org/third_party/webrtc/sound/
soundsysteminterface.cc 18 SoundSystemInterface::SoundDeviceLocatorList *devices) {
19 for (SoundDeviceLocatorList::iterator i = devices->begin();
20 i != devices->end();
26 devices->clear();
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
list_ports_posix.py 34 devices = glob.glob('/dev/com*')
35 return [(d, d, d) for d in devices]
39 devices = glob.glob('/dev/cua*')
40 return [(d, d, d) for d in devices]
46 devices = glob.glob('/dev/cuad*')
47 return [(d, d, d) for d in devices]
55 devices = glob.glob('/dev/dty*')
56 return [(d, d, d) for d in devices]
61 devices = glob.glob('/dev/ttyf*')
62 return [(d, d, d) for d in devices]
    [all...]
  /external/google-tv-pairing-protocol/cpp/
CHANGES 5 messaging protocol for remote devices to communicate with Google TV.
ChangeLog 5 pairing protocol for remote devices to pair with a Google TV device.

Completed in 1093 milliseconds

1 23 4 5 6 7 8 91011>>