/hardware/interfaces/graphics/composer/2.4/vts/functional/ |
D | VtsHalGraphicsComposerV2_4TargetTest.cpp | 315 VsyncPeriodNanos vsyncPeriodNanos; in TEST_P() local 317 mComposerClient->getDisplayVsyncPeriod(mInvalidDisplayId, &vsyncPeriodNanos)); in TEST_P() 341 VsyncPeriodNanos vsyncPeriodNanos; in TEST_P() local 345 vsyncPeriodNanos = 0; in TEST_P() 347 mComposerClient->getDisplayVsyncPeriod(display.get(), &vsyncPeriodNanos)); in TEST_P() 349 } while (vsyncPeriodNanos != expectedVsyncPeriodNanos && retryCount > 0); in TEST_P() 351 EXPECT_EQ(vsyncPeriodNanos, expectedVsyncPeriodNanos); in TEST_P() 358 vsyncPeriodNanos = 0; in TEST_P() 360 mComposerClient->getDisplayVsyncPeriod(display.get(), &vsyncPeriodNanos)); in TEST_P() 361 EXPECT_EQ(vsyncPeriodNanos, expectedVsyncPeriodNanos); in TEST_P() [all …]
|
/hardware/interfaces/graphics/composer/2.4/ |
D | IComposerCallback.hal | 31 * @param vsyncPeriodNanos is the display vsync period in nanoseconds i.e. the next onVsync_2_4 32 * is expected to be called vsyncPeriodNanos nanoseconds after this call. 34 oneway onVsync_2_4(Display display, int64_t timestamp, VsyncPeriodNanos vsyncPeriodNanos);
|
D | IComposerClient.hal | 229 * @return vsyncPeriodNanos is the current vsync period of the display. 232 generates (Error error, VsyncPeriodNanos vsyncPeriodNanos);
|
/hardware/interfaces/graphics/composer/aidl/aidl_api/android.hardware.graphics.composer3/2/android/hardware/graphics/composer3/ |
D | RefreshRateChangedDebugData.aidl | 38 int vsyncPeriodNanos;
|
D | IComposerCallback.aidl | 40 oneway void onVsync(long display, long timestamp, int vsyncPeriodNanos); in onVsync() argument
|
/hardware/interfaces/graphics/composer/aidl/android/hardware/graphics/composer3/ |
D | RefreshRateChangedDebugData.aidl | 29 int vsyncPeriodNanos;
|
D | IComposerCallback.aidl | 80 oneway void onVsync(long display, long timestamp, int vsyncPeriodNanos); in onVsync() argument
|
/hardware/interfaces/graphics/composer/aidl/aidl_api/android.hardware.graphics.composer3/current/android/hardware/graphics/composer3/ |
D | RefreshRateChangedDebugData.aidl | 38 int vsyncPeriodNanos;
|
D | IComposerCallback.aidl | 43 oneway void onVsync(long display, long timestamp, int vsyncPeriodNanos); in onVsync() argument
|
/hardware/interfaces/graphics/composer/aidl/aidl_api/android.hardware.graphics.composer3/3/android/hardware/graphics/composer3/ |
D | RefreshRateChangedDebugData.aidl | 38 int vsyncPeriodNanos;
|
D | IComposerCallback.aidl | 43 oneway void onVsync(long display, long timestamp, int vsyncPeriodNanos); in onVsync() argument
|
/hardware/interfaces/graphics/composer/aidl/aidl_api/android.hardware.graphics.composer3/1/android/hardware/graphics/composer3/ |
D | IComposerCallback.aidl | 40 oneway void onVsync(long display, long timestamp, int vsyncPeriodNanos); in onVsync() argument
|
/hardware/google/graphics/common/libhwc2.1/libvrr/interface/ |
D | VariableRefreshRateInterface.h | 37 virtual void onVsync(int64_t timestamp, int32_t vsyncPeriodNanos) = 0;
|
/hardware/interfaces/graphics/composer/2.4/utils/vts/include/composer-vts/2.4/ |
D | GraphicsComposerCallback.h | 52 Return<void> onVsync_2_4(Display display, int64_t, VsyncPeriodNanos vsyncPeriodNanos) override;
|
/hardware/interfaces/graphics/composer/2.4/utils/hal/include/composer-hal/2.4/ |
D | ComposerClient.h | 84 VsyncPeriodNanos vsyncPeriodNanos) override { in onVsync_2_4() argument 85 auto ret = mCallback->onVsync_2_4(display, timestamp, vsyncPeriodNanos); in onVsync_2_4()
|
D | ComposerHal.h | 49 VsyncPeriodNanos vsyncPeriodNanos) = 0;
|
/hardware/google/graphics/common/hwc3/impl/ |
D | HalImpl.cpp | 75 int32_t vsyncPeriodNanos; in vsync() local 78 h2a::translate(hwcVsyncPeriodNanos, vsyncPeriodNanos); in vsync() 79 hal->getEventCallback()->onVsync(display, timestamp, vsyncPeriodNanos); in vsync() 115 int32_t vsyncPeriodNanos; in refreshRateChangedDebug() local 118 h2a::translate(hwcVsyncPeriodNanos, vsyncPeriodNanos); in refreshRateChangedDebug() 122 .vsyncPeriodNanos = vsyncPeriodNanos, in refreshRateChangedDebug()
|
/hardware/interfaces/graphics/composer/aidl/vts/ |
D | VtsHalGraphicsComposer3_TargetTest.cpp | 489 const auto& [status, vsyncPeriodNanos] = in TEST_P() 1438 const auto& [status, vsyncPeriodNanos] = in waitForVsyncPeriodChange() 1442 EXPECT_EQ(vsyncPeriodNanos, oldPeriodNanos); in waitForVsyncPeriodChange() 1443 } else if (vsyncPeriodNanos == newPeriodNanos) { in waitForVsyncPeriodChange() 1671 const auto& [vsyncPeriodNanosStatus, vsyncPeriodNanos] = in Test_setActiveConfigWithConstraints() 1674 EXPECT_EQ(vsyncPeriodNanos, vsyncPeriod2); in Test_setActiveConfigWithConstraints() 2508 int32_t vsyncPeriodNanos; in TEST_P() local 2516 vsyncPeriodNanos = vsyncPeriodNanosValue; in TEST_P() 2518 } while (vsyncPeriodNanos != expectedVsyncPeriodNanos && retryCount > 0); in TEST_P() 2520 EXPECT_EQ(vsyncPeriodNanos, expectedVsyncPeriodNanos); in TEST_P() [all …]
|
/hardware/interfaces/graphics/composer/2.4/utils/passthrough/include/composer-passthrough/2.4/ |
D | HwcHal.h | 352 int64_t timestamp, hwc2_vsync_period_t vsyncPeriodNanos) { in vsync_2_4_Hook() argument 354 hal->mEventCallback_2_4->onVsync_2_4(display, timestamp, vsyncPeriodNanos); in vsync_2_4_Hook()
|
/hardware/google/graphics/common/libhwc2.1/libvrr/ |
D | VariableRefreshRateController.h | 234 virtual void onVsync(int64_t timestamp, int32_t vsyncPeriodNanos) override;
|
/hardware/google/graphics/common/hwc3/ |
D | ComposerClient.h | 47 void onVsync(int64_t display, int64_t timestamp, int32_t vsyncPeriodNanos) override;
|
D | ComposerClient.cpp | 487 int32_t vsyncPeriodNanos) { in onVsync() argument 489 auto ret = mCallback->onVsync(display, timestamp, vsyncPeriodNanos); in onVsync()
|
/hardware/google/graphics/common/hwc3/include/ |
D | IComposerHal.h | 109 virtual void onVsync(int64_t display, int64_t timestamp, int32_t vsyncPeriodNanos) = 0;
|
/hardware/qcom/sm7250/display/composer/ |
D | QtiComposerClient.h | 224 int64_t timestamp, VsyncPeriodNanos vsyncPeriodNanos);
|
/hardware/libhardware/include_all/hardware/ |
D | hwcomposer2.h | 1170 hwc2_display_t display, int64_t timestamp, hwc2_vsync_period_t vsyncPeriodNanos);
|