HomeSort by relevance Sort by last modified time
    Searched refs:Devices (Results 1 - 25 of 45) sorted by null

1 2

  /frameworks/base/services/core/jni/
com_android_server_lights_LightsService.cpp 47 struct Devices {
67 Devices* devices; local
69 devices = (Devices*)malloc(sizeof(Devices));
73 devices->lights[LIGHT_INDEX_BACKLIGHT]
75 devices->lights[LIGHT_INDEX_KEYBOARD]
77 devices->lights[LIGHT_INDEX_BUTTONS]
79 devices->lights[LIGHT_INDEX_BATTERY
98 Devices* devices = (Devices*)ptr; local
109 Devices* devices = (Devices*)ptr; local
    [all...]
  /system/connectivity/shill/wimax/
mock_wimax_manager_proxy.h 36 MOCK_METHOD1(Devices, RpcIdentifiers(Error* error));
wimax_manager_proxy_interface.h 42 virtual RpcIdentifiers Devices(Error* error) = 0;
  /external/opencv3/modules/videoio/src/
cap_winrt_video.hpp 56 Platform::Agile<Windows::Devices::Enumeration::DeviceInformationCollection> m_devices;
cap_winrt_bridge.cpp 35 using namespace Windows::Devices::Enumeration;
cap_winrt_video.cpp 44 using namespace Windows::Media::Devices;
48 using namespace Windows::Devices::Enumeration;
114 if (location != nullptr && location->Panel == Windows::Devices::Enumeration::Panel::Back)
315 // synchronous version of listing video devices on WinRT
cap_winrt_capture.cpp 37 using namespace Windows::Devices::Enumeration;
  /external/autotest/client/common_lib/cros/
dbus_send_unittests.py 55 string "Devices"
155 'Devices': ['/device/eth0', '/device/eth1'],
  /system/connectivity/shill/dbus/
chromeos_wimax_manager_proxy.h 44 RpcIdentifiers Devices(Error* error) override;
52 brillo::dbus_utils::Property<std::vector<dbus::ObjectPath>> devices; member in class:shill::ChromeosWiMaxManagerProxy::PropertySet
68 void DevicesChanged(const std::vector<dbus::ObjectPath>& devices);
chromeos_wimax_manager_proxy.cc 45 const char ChromeosWiMaxManagerProxy::kPropertyDevices[] = "Devices";
52 RegisterProperty(kPropertyDevices, &devices);
105 RpcIdentifiers ChromeosWiMaxManagerProxy::Devices(Error* error) {
113 if (!properties_->devices.GetAndBlock()) {
114 LOG(ERROR) << "Failed to get Devices";
118 KeyValueStore::ConvertPathsToRpcIdentifiers(properties_->devices.value(),
164 const vector<dbus::ObjectPath>& devices) {
165 SLOG(DBus, nullptr, 2) << __func__ << "(" << devices.size() << ")";
170 KeyValueStore::ConvertPathsToRpcIdentifiers(devices, &rpc_devices);
  /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...]
devices_unittest.py 7 """Unit tests for devices.py."""
14 from fake_device_server import devices namespace
22 """Tests for the Devices class."""
31 self.devices = devices.Devices(
44 new_device = self.devices.create_device(None, good_device_config)
52 self.devices.create_device, None, bad_device_config)
58 returned_json = self.devices.GET(1234)
63 self.devices.GET, 1235
    [all...]
server.py 20 from fake_device_server import devices namespace
58 devices_handler = devices.Devices(devices_resource,
63 devices_handler, '/' + devices.DEVICES_PATH,
registration_tickets_unittest.py 15 from fake_device_server import devices namespace
34 self.devices = devices.Devices(
41 resource_delegate.ResourceDelegate(self.tickets), self.devices,
  /external/chromium-trace/catapult/devil/devil/android/sdk/
fastboot.py 75 def Devices(self, timeout=None, retries=None):
76 """Outputs list of devices in fastboot mode."""
77 output = self._RunFastbootCommand(['devices'])
adb_compatibility_devicetest.py 96 devices = adb_wrapper.AdbWrapper.Devices()
97 self.assertNotEqual(0, len(devices), 'No devices found.')
191 # devices [-l]
218 print 'connected devices:'
220 for d in adb_wrapper.AdbWrapper.Devices():
223 print ' <failed to list devices>'
  /external/opencv3/samples/winrt/ImageManipulations/
AdvancedCapture.xaml.h 28 using namespace Windows::Devices::Enumeration;
AdvancedCapture.xaml.cpp 39 using namespace Windows::Devices::Enumeration;
137 if (chosenDevInfo->EnclosureLocation != nullptr && chosenDevInfo->EnclosureLocation->Panel == Windows::Devices::Enumeration::Panel::Back)
142 else if (chosenDevInfo->EnclosureLocation != nullptr && chosenDevInfo->EnclosureLocation->Panel == Windows::Devices::Enumeration::Panel::Front)
  /external/v8/build/android/gyp/util/
build_device.py 23 for a in adb_wrapper.AdbWrapper.Devices()]
  /external/v8/build/android/pylib/utils/
emulator.py 105 for a in adb_wrapper.AdbWrapper.Devices()
126 for a in adb_wrapper.AdbWrapper.Devices()
134 if not any(a.is_emulator for a in adb_wrapper.AdbWrapper.Devices()):
180 for a in adb_wrapper.AdbWrapper.Devices()
  /hardware/libhardware/modules/local_time/
Android.mk 19 # Devices which use the default implementation should take care to ensure that
  /external/webrtc/webrtc/modules/audio_device/win/
audio_mixer_manager_win.h 82 UINT Devices() const;
  /frameworks/base/docs/html/design/
design_toc.cs 30 <div class="nav-section-header"><a href="<?cs var:toroot ?>design/devices.html">Devices</a></div>
62 <li><a href="<?cs var:toroot ?>design/style/devices-displays.html">Devices and Displays</a></li>
  /bootable/recovery/updater/
Android.mk 69 # Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.
  /external/chromium-trace/catapult/devil/devil/android/
fastboot_utils.py 106 This waits for the device serial to show up in fastboot devices output.
109 return self._serial in self.fastboot.Devices()

Completed in 946 milliseconds

1 2