Lines Matching refs:manufacturerId
69 uint16_t DisplayId::manufacturerId() const { in manufacturerId() function in android::DisplayId
73 DisplayId DisplayId::fromEdid(uint8_t port, uint16_t manufacturerId, uint32_t displayNameHash) { in fromEdid() argument
74 return {(static_cast<Type>(manufacturerId) << 40) | (static_cast<Type>(displayNameHash) << 8) | in fromEdid()
102 const uint16_t manufacturerId = in parseEdid() local
105 const auto pnpId = getPnpId(manufacturerId); in parseEdid()
165 return Edid{manufacturerId, *pnpId, displayName}; in parseEdid()
168 std::optional<PnpId> getPnpId(uint16_t manufacturerId) { in getPnpId() argument
169 const char a = getPnpLetter<0>(manufacturerId); in getPnpId()
170 const char b = getPnpLetter<1>(manufacturerId); in getPnpId()
171 const char c = getPnpLetter<2>(manufacturerId); in getPnpId()
176 return getPnpId(displayId.manufacturerId()); in getPnpId()
194 return DisplayIdentificationInfo{DisplayId::fromEdid(port, edid->manufacturerId, hash), in parseDisplayIdentificationData()