Lines Matching refs:hwc1DisplayId
493 auto hwc1DisplayId = pending.first; in registerCallback() local
494 if (mHwc1DisplayMap.count(hwc1DisplayId) == 0) { in registerCallback()
496 hwc1DisplayId); in registerCallback()
499 auto displayId = mHwc1DisplayMap[hwc1DisplayId]; in registerCallback()
510 auto hwc1DisplayId = pending.first; in registerCallback() local
511 if (mHwc1DisplayMap.count(hwc1DisplayId) == 0) { in registerCallback()
513 hwc1DisplayId); in registerCallback()
516 auto displayId = mHwc1DisplayMap[hwc1DisplayId]; in registerCallback()
2582 void HWC2On1Adapter::hwc1Vsync(int hwc1DisplayId, int64_t timestamp) in hwc1Vsync() argument
2584 ALOGV("Received hwc1Vsync(%d, %" PRId64 ")", hwc1DisplayId, timestamp); in hwc1Vsync()
2591 mPendingVsyncs.emplace_back(hwc1DisplayId, timestamp); in hwc1Vsync()
2595 if (mHwc1DisplayMap.count(hwc1DisplayId) == 0) { in hwc1Vsync()
2596 ALOGE("hwc1Vsync: Couldn't find display for HWC1 id %d", hwc1DisplayId); in hwc1Vsync()
2601 auto displayId = mHwc1DisplayMap[hwc1DisplayId]; in hwc1Vsync()
2610 void HWC2On1Adapter::hwc1Hotplug(int hwc1DisplayId, int connected) in hwc1Hotplug() argument
2612 ALOGV("Received hwc1Hotplug(%d, %d)", hwc1DisplayId, connected); in hwc1Hotplug()
2614 if (hwc1DisplayId != HWC_DISPLAY_EXTERNAL) { in hwc1Hotplug()
2624 mPendingHotplugs.emplace_back(hwc1DisplayId, connected); in hwc1Hotplug()
2629 if (mHwc1DisplayMap.count(hwc1DisplayId) == 0) { in hwc1Hotplug()
2651 displayId = mHwc1DisplayMap[hwc1DisplayId]; in hwc1Hotplug()