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()
202 EXPECT_EQ(hash("HP ZR30w"), edid->modelHash); in TEST()
214 EXPECT_EQ(hash("SAMSUNG"), edid->modelHash); in TEST()
232 EXPECT_EQ(hash("Panasonic-TV"), edid->modelHash); in TEST()
250 EXPECT_EQ(hash("Hisense"), edid->modelHash); in TEST()
268 EXPECT_EQ(hash("LP2361"), edid->modelHash); in TEST()
288 const auto modelHash = hash("CN4202137Q"); in TEST() local
289 EXPECT_EQ(modelHash, edid->modelHash); in TEST()
290 EXPECT_EQ(modelHash, 3582951527); in TEST()
297 EXPECT_EQ(modelHash, edid->modelHash); in TEST()
DDisplayId_test.cpp26 constexpr uint32_t modelHash = 42; in TEST() local
27 const PhysicalDisplayId id = PhysicalDisplayId::fromEdid(port, manufacturerId, modelHash); in TEST()
/frameworks/native/libs/ui/include_vndk/ui/
DDisplayId.h91 uint32_t modelHash) { in fromEdid()
92 return PhysicalDisplayId(FLAG_STABLE, port, manufacturerId, modelHash); in fromEdid()
110 uint32_t modelHash) in PhysicalDisplayId()
112 (static_cast<uint64_t>(modelHash) << 8) | port) {} in PhysicalDisplayId()
/frameworks/native/libs/ui/include/ui/
DDisplayId.h91 uint32_t modelHash) { in fromEdid()
92 return PhysicalDisplayId(FLAG_STABLE, port, manufacturerId, modelHash); in fromEdid()
110 uint32_t modelHash) in PhysicalDisplayId()
112 (static_cast<uint64_t>(modelHash) << 8) | port) {} in PhysicalDisplayId()
DDisplayIdentification.h66 uint32_t modelHash; member
/frameworks/native/libs/ui/
DDisplayIdentification.cpp269 const uint32_t modelHash = static_cast<uint32_t>(*ftl::stable_hash(modelString)); in parseEdid() local
303 .modelHash = modelHash, in parseEdid()
338 const auto displayId = PhysicalDisplayId::fromEdid(port, edid->manufacturerId, edid->modelHash); in parseDisplayIdentificationData()