HomeSort by relevance Sort by last modified time
    Searched defs:Device (Results 51 - 75 of 572) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
EfiPci.h 35 UINT8 Device;
  /device/linaro/bootloader/edk2/MdePkg/Include/Ppi/
PciCfg2.h 66 /// 8-bit register offset within the PCI configuration space for a given device's function
72 /// given device.
78 UINT8 Device;
111 @retval EFI_DEVICE_NOT_READY The device is not capable of supporting the operation at this
152 @retval EFI_DEVICE_NOT_READY The device is not capable of supporting
  /device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772b/
DriverBinding.c 28 @param [in] Controller Handle of device to test.
31 @retval EFI_SUCCESS This driver supports this device.
32 @retval other This driver does not support this device.
43 EFI_USB_DEVICE_DESCRIPTOR Device;
65 Status = pUsbIo->UsbGetDeviceDescriptor ( pUsbIo, &Device );
74 if (ASIX_DONGLES[Index].VendorId == Device.IdVendor &&
75 ASIX_DONGLES[Index].ProductId == Device.IdProduct) {
101 Initialize PXE structures, create a copy of the Controller Device Path with the
103 on the newly created Device Path.
106 @param [in] Controller Handle of device to work with.
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/PciHostBridgeLib/
PciHostBridgeLib.c 110 @retval EFI_SUCCESS Initialization successful. A device path
111 consisting of an ACPI device path node, with
285 // Scan all other root buses. If function 0 of any device on a bus returns a
292 UINTN Device;
294 for (Device = 0; Device <= PCI_MAX_DEVICE; ++Device) {
295 if (PciRead16 (PCI_LIB_ADDRESS (RootBridgeNumber, Device, 0,
300 if (Device <= PCI_MAX_DEVICE) {
XenSupport.c 63 IN UINTN Device,
88 PCI_LIB_ADDRESS (Bus, Device, Function, Offset),
143 PCI_LIB_ADDRESS (Bus, Device, Function, Offset),
180 UINT8 Device;
210 for (Device = 0, NumberOfDevices = 0; Device <= PCI_MAX_DEVICE; Device++) {
215 // Compute the PCI configuration address of the PCI device to probe
217 Address = PCI_LIB_ADDRESS (PrimaryBus, Device, Function, 0);
225 // If the PCI Configuration Read fails, or a PCI device does not
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/VirtioPciDeviceDxe/
VirtioPciDevice.c 3 This driver produces Virtio Device Protocol instances for Virtio PCI devices.
48 Read a word from Region 0 of the device specified by PciIo.
53 @param[in] Dev Virtio PCI device.
104 // bus, device, platform, or type of I/O might require. For example on
133 Write a word into Region 0 of the device specified by PciIo.
138 @param[in] Dev Virtio PCI device.
184 // bus, device, platform, or type of I/O might require. For example on
213 Device probe function for this driver.
215 The DXE core calls this function for any given device in order to see if the
216 driver can drive the device.
    [all...]
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/Library/AcpiTimerLib/
AcpiTimerLib.c 53 UINTN Device;
84 Device = PcdGet8 (PcdAcpiIoPciDeviceNumber);
92 if ((PciRead8 (PCI_LIB_ADDRESS (Bus, Device, Function, EnableRegister)) & EnableMask) != EnableMask) {
94 PCI_LIB_ADDRESS (Bus, Device, Function, PcdGet16 (PcdAcpiIoPciBarRegisterOffset)),
98 PCI_LIB_ADDRESS (Bus, Device, Function, EnableRegister),
  /external/autotest/client/cros/input_playback/
input_playback.py 16 class Device(object):
17 """Information about a specific input device."""
20 self.emulated = False # Whether device is real or not
26 self.device_dir = None # e.g. '/sys/class/input/event4/device/device'
110 """Return True/False if device has a input of given type.
125 Emulate the given input (or default for type) with evemu-device.
127 Emulating more than one of the same device type will only allow playback
128 on the last one emulated. The name of the last-emulated device is
136 @param property_file: Property file of device to be emulated. Generat
    [all...]
  /external/deqp/scripts/android/
install_apk.py 41 class Device:
42 def __init__(self, serial, product, model, device):
46 self.device = device
49 return "%s: {product: %s, model: %s, device: %s}" % (self.serial, self.product, self.model, self.device)
58 ptrn = re.compile(r'^([a-zA-Z0-9\.\-:]+)\s+.*product:([^\s]+)\s+model:([^\s]+)\s+device:([^\s]+)')
66 print "WARNING: Failed to parse device info '%s'" % line
69 devices.append(Device(m.group(1), m.group(2), m.group(3), m.group(4)))
135 def installToDevice (device, adbPath, packageName, apkPath, printPrefix="")
    [all...]
  /external/dtc/Documentation/
dtc-paper.tex 14 \title{Device trees everywhere}
45 device tree supplied by Open Firmware on IBM\R servers and Apple\R
48 The ``blob'' representing the device tree can be created using \dtc
49 --- the Device Tree Compiler --- that turns a simple text
63 \subsection{OF and the device tree}
67 Among other boot-time services, OF maintains a device tree that
70 the Linux kernel uses OF calls to scan the device tree and transfer it
72 various device information.
74 The device tree consists of nodes representing devices or
77 information about the device. The values are arbitrary byte strings
    [all...]
  /external/swiftshader/src/OpenGL/libGLESv2/
Device.hpp 39 class Device : public sw::Renderer
51 explicit Device(sw::Context *context);
53 virtual ~Device();
  /external/tensorflow/tensorflow/core/common_runtime/
device.h 16 // A Device is a something that can perform computations as part of a
18 // remote (contacts a device local to another machine using an RPC to
20 // responsible for the Device <-> id mapping.
22 // Device names
23 // * Every Device should have a unique name with the format:
25 // An example name would be "/job:train/replica:0/task:3/device:GPU:2".
54 class Device : public DeviceBase {
56 Device(Env* env, const DeviceAttributes& device_attributes);
57 ~Device() override;
59 // Full name of this device (see top comment)
    [all...]
  /external/tensorflow/tensorflow/core/framework/
node_def_builder.cc 200 NodeDefBuilder& NodeDefBuilder::Device(StringPiece device_spec) {
  /external/tensorflow/tensorflow/core/kernels/
check_numerics_op.cc 46 template <typename Device, typename T>
105 typedef GPUDevice Device;
141 const Device& d = context->eigen_device<Device>();
145 // Copy the results from device to host
162 errors::Internal("cudaMemcpy from device to host failed"), done);
200 context->device()->tensorflow_gpu_device_info()->event_mgr->ThenExecute(
213 Name("CheckNumerics").Device(DEVICE_CPU).TypeConstraint<T>("T"), \
221 Name("CheckNumerics").Device(DEVICE_GPU).TypeConstraint<Eigen::half>("T"),
224 Name("CheckNumerics").Device(DEVICE_GPU).TypeConstraint<float>("T")
    [all...]
  /external/webrtc/talk/media/webrtc/
fakewebrtcdeviceinfo.h 39 struct Device {
40 Device(const std::string& n, const std::string& i) : name(n), id(i) {}
48 devices_.push_back(Device(device_name, device_id));
52 Device* dev = GetDeviceById(
67 Device* dev = GetDeviceByIndex(device_num);
80 Device* dev = GetDeviceById(device_id);
87 Device* dev = GetDeviceById(device_id);
109 Device* GetDeviceByIndex(size_t num) {
112 Device* GetDeviceById(const char* device_id) {
122 std::vector<Device> devices_
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/
Device.java 33 public class Device {
37 * EAS requires a unique device id, so that sync is possible from a variety of different
38 * devices (e.g. the syncKey is specific to a device) If we're on an emulator or some other
39 * device that doesn't provide one, we can create it as android<n> where <n> is system time.
40 * This would work on a real device as well, but it would be better to use the "real" id if
63 // It's very bad if we read a null device id; let's delete that file
93 * @return Device's unique ID if available. null if the device has no unique ID.
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
SyncScope.h 102 Device = 2,
114 case Device:
132 static_cast<unsigned>(WorkGroup), static_cast<unsigned>(Device),
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Basic/
SyncScope.h 102 Device = 2,
114 case Device:
132 static_cast<unsigned>(WorkGroup), static_cast<unsigned>(Device),
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Basic/
SyncScope.h 102 Device = 2,
114 case Device:
132 static_cast<unsigned>(WorkGroup), static_cast<unsigned>(Device),
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Basic/
SyncScope.h 102 Device = 2,
114 case Device:
132 static_cast<unsigned>(WorkGroup), static_cast<unsigned>(Device),
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Basic/
SyncScope.h 102 Device = 2,
114 case Device:
132 static_cast<unsigned>(WorkGroup), static_cast<unsigned>(Device),
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Basic/
SyncScope.h 102 Device = 2,
114 case Device:
132 static_cast<unsigned>(WorkGroup), static_cast<unsigned>(Device),
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Basic/
SyncScope.h 102 Device = 2,
114 case Device:
132 static_cast<unsigned>(WorkGroup), static_cast<unsigned>(Device),
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Basic/
SyncScope.h 102 Device = 2,
114 case Device:
132 static_cast<unsigned>(WorkGroup), static_cast<unsigned>(Device),
  /system/bt/vendor_libs/test_vendor_lib/scripts/
test_channel.py 17 """Script for sending testing parameters and commands to a Bluetooth device.
20 Bluetooth device. It is intended to be used in tandem with the test vendor
29 tcp:<port>' to forward the port to the device.
30 2. In a separate shell, build and push the test vendor library to the device
33 3. Once logcat has started, turn Bluetooth on from the device.
50 # Used to generate fake device names and addresses during discovery.
89 device = Device(name, address)
90 self._discovered_devices.add_device(device)
91 return device
    [all...]

Completed in 476 milliseconds

1 23 4 5 6 7 8 91011>>