Searched defs:Edid (Results 1 - 1 of 1) sorted by relevance

/external/autotest/client/cros/chameleon/
H A Dedid.py33 class Edid(object): class in inherits:object
34 """Edid is an abstraction of EDID (Extended Display Identification Data).
45 """Construct an Edid.
50 if not Edid.verify(data) and not skip_verify:
64 if data_len % Edid.BLOCK_SIZE != 0:
68 for start in xrange(0, data_len, Edid.BLOCK_SIZE):
71 map(ord, data[start:start+Edid.BLOCK_SIZE]))
74 start / Edid.BLOCK_SIZE)
82 """Construct an Edid from a file.
110 NO_EDID = Edid('', skip_verif
[all...]

Completed in 93 milliseconds