Home
last modified time | relevance | path

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

/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/
H A DDisplayIdentificationTest.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()
/aosp12/frameworks/native/libs/ui/include/ui/
H A DDisplayId.h70 uint32_t modelHash) { in fromEdid()
71 return PhysicalDisplayId(FLAG_STABLE, port, manufacturerId, modelHash); in fromEdid()
92 uint32_t modelHash) in PhysicalDisplayId()
94 (static_cast<uint64_t>(modelHash) << 8) | port) {} in PhysicalDisplayId()
/aosp12/frameworks/native/libs/ui/include_vndk/ui/
H A DDisplayId.h70 uint32_t modelHash) { in fromEdid()
71 return PhysicalDisplayId(FLAG_STABLE, port, manufacturerId, modelHash); in fromEdid()
92 uint32_t modelHash) in PhysicalDisplayId()
94 (static_cast<uint64_t>(modelHash) << 8) | port) {} in PhysicalDisplayId()
/aosp12/frameworks/native/libs/ui/tests/
H A DDisplayId_test.cpp26 constexpr uint32_t modelHash = 42; in TEST() local
27 PhysicalDisplayId id = PhysicalDisplayId::fromEdid(port, manufacturerId, modelHash); in TEST()
/aosp12/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DDisplayIdentification.cpp268 const uint32_t modelHash = static_cast<uint32_t>(cityHash64Len0To16(modelString)); in parseEdid() local
302 .modelHash = modelHash, in parseEdid()
332 const auto displayId = PhysicalDisplayId::fromEdid(port, edid->manufacturerId, edid->modelHash); in parseDisplayIdentificationData()
H A DDisplayIdentification.h67 uint32_t modelHash; member