HomeSort by relevance Sort by last modified time
    Searched defs:Edid (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/EdidActive/
EdidActive.h 18 EDID Active Protocol from the UEFI 2.0 specification.
34 UINT8 *Edid;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/EdidDiscovered/
EdidDiscovered.h 18 EDID Discovered Protocol from the UEFI 2.0 specification.
21 the EDID information being used for output device represented by the child handle.
35 UINT8 *Edid;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
EdidActive.h 2 EDID Active Protocol from the UEFI 2.0 specification.
26 /// This protocol contains the EDID information for an active video output device. This is either the
27 /// EDID information retrieved from the EFI_EDID_OVERRIDE_PROTOCOL if an override is
28 /// available, or an identical copy of the EDID information from the
33 /// The size, in bytes, of the Edid buffer. 0 if no EDID information
40 /// A pointer to a read-only array of bytes that contains the EDID
42 /// NULL if no EDID information is available for the video output
43 /// device. The minimum size of a valid Edid buffer is 128 bytes.
44 /// EDID information is defined in the E-EDID EEPROM
    [all...]
EdidDiscovered.h 2 EDID Discovered Protocol from the UEFI 2.0 specification.
5 the EDID information being used for the output device represented by the child handle.
27 /// This protocol contains the EDID information retrieved from a video output device.
31 /// The size, in bytes, of the Edid buffer. 0 if no EDID information
38 /// A pointer to a read-only array of bytes that contains the EDID
40 /// NULL if no EDID information is available for the video output
41 /// device. The minimum size of a valid Edid buffer is 128 bytes.
42 /// EDID information is defined in the E-EDID EEPROM
    [all...]
  /external/autotest/client/cros/multimedia/
display_info.py 37 class Edid(object):
38 def __init__(self, edid):
39 """The class match the Edid object from chrome.system.display API.
41 @param edid: Map of Edid properties.
44 self.manufacturer_id = edid['manufacturerId']
45 self.year_of_manufacture = edid['yearOfManufacture']
46 self.product_id = edid['productId']
62 self.edid = self.Edid(d['edid']
    [all...]
  /external/autotest/client/cros/chameleon/
edid.py 13 # clocks for each model and check if the EDID is in the supported list.
15 """Check whether the EDID is supported by DUT
35 class Edid(object):
36 """Edid is an abstraction of EDID (Extended Display Identification Data).
47 """Construct an Edid.
49 @param data: A byte-array of EDID data.
52 if not Edid.verify(data) and not skip_verify:
53 raise ValueError('Not a valid EDID.')
59 """Verify the correctness of EDID
    [all...]

Completed in 2411 milliseconds