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

1 2 3

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/BootManagerPolicyDxe/
BootManagerPolicyDxe.c 32 @retval EFI_SUCCESS Network devices are connected.
45 EFI_DEVICE_PATH_PROTOCOL *Devices;
56 Devices = NULL;
62 TempDevicePath = Devices;
63 Devices = AppendDevicePathInstance (Devices, SingleDevice);
69 if (Devices != NULL) {
74 GetDevicePathSize (Devices),
75 Devices
81 FreePool (Devices);
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDriver1CommandsLib/
Devices.c 2 Main file for devices shell Driver1 function.
32 @param[in, out] Devices On successful return this buffer will be
33 contain the number of devices controlled.
52 IN OUT UINTN *Devices,
67 || Devices == NULL
77 *Devices = 0;
98 Status = PARSE_HANDLE_DATABASE_UEFI_DRIVERS(TheHandle, Devices, &HandleBuffer);
99 if (!EFI_ERROR(Status) && Devices != NULL && HandleBuffer != NULL) {
100 for (Count = 0 ; Count < *Devices ; Count++) {
124 Function for 'devices' command.
    [all...]
UefiShellDriver1CommandsLib.inf 27 Devices.c
  /external/v4l2_codec2/vda/
v4l2_device.h 120 using Devices = std::vector<std::pair<std::string, std::vector<uint32_t>>>;
134 // Enumerate all V4L2 devices on the system for |type| and store the results
138 // Return device information for all devices of |type| available in the
139 // system. Enumerates and queries devices on first run and caches the results
141 const Devices& GetDevicesForType(Type type);
147 // Stores information for all devices available on the system
149 std::map<Type, Devices> devices_by_type_;
v4l2_device.cc 220 DVLOG(1) << "No devices supporting " << std::hex << "0x" << v4l2_pixfmt
270 const auto& devices = GetDevicesForType(type); local
271 for (const auto& device : devices) {
417 // all platforms are updated to use numbered devices.
421 // devices are actually available. Try to open the first 10; if not present,
428 Devices devices; local
437 devices.push_back(std::make_pair(path, supported_pixelformats));
444 devices_by_type_[type] = devices;
447 const V4L2Device::Devices& V4L2Device::GetDevicesForType(Type type)
456 const Devices& devices = GetDevicesForType(type); local
    [all...]
  /external/python/cpython2/Mac/Modules/cg/
CFMLateImport.h 46 #include <Devices.h>
  /compatibility/cdd/3_software/
3_5_api-behavioral-compatibility.md 8 * [C-0-1] Devices MUST NOT change the behavior or semantics of a
10 * [C-0-2] Devices MUST NOT alter the lifecycle or lifecycle semantics of
12 * [C-0-3] Devices MUST NOT change the semantics of a standard permission.
13 * Devices MUST NOT alter the limitations enforced on background applications.
  /device/linaro/bootloader/edk2/StdLib/
StdLib.inc 67 DevConsole|StdLib/LibC/Uefi/Devices/daConsole.inf
68 DevShell|StdLib/LibC/Uefi/Devices/daShell.inf # DEPRECATED! Please use DevMedia for new code.
69 DevMedia|StdLib/LibC/Uefi/Devices/daShell.inf
70 DevUtility|StdLib/LibC/Uefi/Devices/daUtility.inf
StdLib.dsc 125 StdLib/LibC/Uefi/Devices/daUtility.inf
126 StdLib/LibC/Uefi/Devices/daConsole.inf
127 StdLib/LibC/Uefi/Devices/daShell.inf
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbEnumer.c 562 // Remove all the devices on its downstream ports. Search from devices[1].
563 // Devices[0] is the root hub.
567 Child = Bus->Devices[Index];
576 Bus->Devices[Index] = NULL;
578 Bus->Devices[Index]->DisconnectFail = TRUE;
594 Bus->Devices[Device->Address] = NULL;
597 Bus->Devices[Device->Address]->DisconnectFail = TRUE;
628 Device = Bus->Devices[Index];
758 if (Bus->Devices[Address] == NULL) {
    [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...]
devices_unittest.py 7 """Unit tests for devices.py."""
14 from fake_device_server import devices
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
58 devices_handler = devices.Devices(devices_resource,
63 devices_handler, '/' + devices.DEVICES_PATH,
registration_tickets_unittest.py 15 from fake_device_server import devices
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/libmojo/third_party/catapult/devil/devil/android/sdk/
fastboot.py 77 def Devices(self, timeout=None, retries=None):
78 """Outputs list of devices in fastboot mode."""
79 output = self._RunFastbootCommand(['devices'])
adb_wrapper_devicetest.py 21 devices = adb_wrapper.AdbWrapper.Devices()
22 assert devices, 'A device must be attached'
23 self._adb = devices[0]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/SataSiI3132Dxe/
SiI3132AtaPassThru.c 35 List = SataPort->Devices.ForwardLink;
37 while (List != &SataPort->Devices) {
349 Used to retrieve the list of legal port numbers for ATA devices on an ATA controller.
350 These can either be the list of ports where ATA devices are actually present or the
409 Used to retrieve the list of legal port multiplier port numbers for ATA devices on a port of an ATA
410 controller. These can either be the list of port multiplier ports where ATA devices are actually
445 @retval EFI_NOT_FOUND There are no more ATA devices on this port of the ATA controller.
475 List = SataPort->Devices.ForwardLink;
476 if (List != &SataPort->Devices) {
487 if (List != &SataPort->Devices) {
    [all...]
SataSiI3132.c 55 InitializeListHead (&(Port->Devices));
209 InsertTailList (&Port->Devices, &Device->Link);
  /external/autotest/client/common_lib/cros/
dbus_send_unittest.py 58 string "Devices"
158 'Devices': ['/device/eth0', '/device/eth1'],
  /external/chromium-trace/catapult/systrace/bin/
adb_profile_chrome_startup 69 devices = [a.GetDeviceSerial() for a in adb_wrapper.AdbWrapper.Devices()]
70 if len(devices) == 0:
71 raise RuntimeError('No ADB devices connected.')
72 elif len(devices) >= 2:
73 raise RuntimeError('Multiple devices connected, serial number required')
74 options.device_serial_number = devices[0]
79 devices = device_utils.DeviceUtils.HealthyDevices()
80 if len(devices) != 1:
83 device = devices[0
    [all...]
  /external/chromium-trace/catapult/systrace/profile_chrome/
main.py 91 devices = [a.GetDeviceSerial() for a in adb_wrapper.AdbWrapper.Devices()] variable
92 if len(devices) == 0:
93 raise RuntimeError('No ADB devices connected.')
94 elif len(devices) >= 2:
95 raise RuntimeError('Multiple devices connected, serial number required')
96 options.device_serial_number = devices[0]
  /external/webrtc/webrtc/modules/audio_device/win/
audio_mixer_manager_win.h 82 UINT Devices() const;
  /bootable/recovery/updater/
Android.mk 108 # Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.

Completed in 1258 milliseconds

1 2 3