Home
last modified time | relevance | path

Searched refs:modelHash (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/libs/ui/tests/
DDisplayIdentification_test.cpp190 EXPECT_EQ(hash("121AT11-801"), edid->modelHash); in TEST()
201 EXPECT_EQ(hash("HP ZR30w"), edid->modelHash); in TEST()
212 EXPECT_EQ(hash("SAMSUNG"), edid->modelHash); in TEST()
229 EXPECT_EQ(hash("Panasonic-TV"), edid->modelHash); in TEST()
246 EXPECT_EQ(hash("Hisense"), edid->modelHash); in TEST()
263 EXPECT_EQ(hash("LP2361"), edid->modelHash); in TEST()
282 const auto modelHash = hash("CN4202137Q"); in TEST() local
283 EXPECT_EQ(modelHash, edid->modelHash); in TEST()
290 EXPECT_EQ(modelHash, edid->modelHash); in TEST()
DDisplayId_test.cpp26 constexpr uint32_t modelHash = 42; in TEST() local
27 PhysicalDisplayId id = PhysicalDisplayId::fromEdid(port, manufacturerId, modelHash); in TEST()
/frameworks/native/libs/ui/include_vndk/ui/
DDisplayId.h87 uint32_t modelHash) { in fromEdid()
88 return PhysicalDisplayId(FLAG_STABLE, port, manufacturerId, modelHash); in fromEdid()
106 uint32_t modelHash) in PhysicalDisplayId()
108 (static_cast<uint64_t>(modelHash) << 8) | port) {} in PhysicalDisplayId()
/frameworks/native/libs/ui/include/ui/
DDisplayId.h87 uint32_t modelHash) { in fromEdid()
88 return PhysicalDisplayId(FLAG_STABLE, port, manufacturerId, modelHash); in fromEdid()
106 uint32_t modelHash) in PhysicalDisplayId()
108 (static_cast<uint64_t>(modelHash) << 8) | port) {} in PhysicalDisplayId()
DDisplayIdentification.h66 uint32_t modelHash; member
/frameworks/native/libs/ui/
DDisplayIdentification.cpp319 const uint32_t modelHash = static_cast<uint32_t>(cityHash64Len0To16(modelString)); in parseEdid() local
353 .modelHash = modelHash, in parseEdid()
383 const auto displayId = PhysicalDisplayId::fromEdid(port, edid->manufacturerId, edid->modelHash); in parseDisplayIdentificationData()