/foundation/arkui/ace_engine/frameworks/core/common/ |
H A D | window.cpp | 24 auto&& callback = [this](uint64_t nanoTimestamp, uint32_t frameCount) { OnVsync(nanoTimestamp, frameCount); }; in Window() 46 void Window::OnVsync(uint64_t nanoTimestamp, uint32_t frameCount) in OnVsync() function in OHOS::Ace::Window
|
H A D | window.h | 97 virtual void OnVsync(uint64_t nanoTimestamp, uint32_t frameCount);
|
/foundation/window/window_manager/utils/include/ |
H A D | surface_reader.h | 46 surfaceReader_.OnVsync();
54 void OnVsync();
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/ |
H A D | rs_vsync_client_ohos.cpp | 52 .callbackWithId_ = OnVsync, in RequestNextVsync() 72 void RSVsyncClientOhos::OnVsync(int64_t nanoTimestamp, int64_t frameCount, void* client) in OnVsync() function in OHOS::Rosen::RSVsyncClientOhos 78 ROSEN_LOGE("RSVsyncClientOhos::OnVsync vsyncClient is null"); in OnVsync()
|
H A D | rs_vsync_client_ohos.h | 38 static void OnVsync(int64_t nanoTimestamp, int64_t frameCount, void* client);
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/systemtest/ |
H A D | rs_interfaces_test_utils.h | 55 utils_.OnVsync(); 63 void OnVsync();
|
/foundation/window/window_manager/previewer/include/ |
H A D | vsync_station.h | 48 static void OnVsync(int64_t nanoTimestamp, int64_t frameCount, void* client); 63 .callbackWithId_ = OnVsync,
|
/foundation/window/window_manager/utils/test/unittest/ |
H A D | surface_reader_test.cpp | 46 * @tc.name: OnVsync 50 HWTEST_F(SurfaceReaderTest, OnVsync, Function | SmallTest | Level2) in HWTEST_F() 54 reader->OnVsync(); in HWTEST_F()
|
/foundation/window/window_manager/test/systemtest/dms/ |
H A D | display_test_utils.h | 53 utils_.OnVsync(); 61 void OnVsync();
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/ |
H A D | rs_ui_display_soloist.h | 97 static void OnVsync(TimestampType timestamp, void* client); 101 .callback_ = OnVsync, 165 static void OnVsync(TimestampType timestamp, void* client); 170 .callback_ = OnVsync,
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/platform/ohos/ |
H A D | rs_vsync_client_ohos_test.cpp | 84 * @tc.desc: Test OnVsync 92 vsyncClientOhos_->OnVsync(nanoTimestamp_, frameCount_, vsyncClient_.get()); in HWTEST_F() 100 vsyncClientOhos_->OnVsync(nanoTimestamp_, frameCount_, vsyncClient_.get()); in HWTEST_F()
|
/foundation/arkui/ace_engine/test/mock/core/common/ |
H A D | mock_window.cpp | 21 void Window::OnVsync(uint64_t nanoTimestamp, uint32_t frameCount) {} in OnVsync() function in OHOS::Ace::Window
|
/foundation/arkui/ace_engine/test/unittest/core/common/ace_engine/ |
H A D | window_test.cpp | 68 * @tc.desc: Verify the OnVsync. 86 window.OnVsync(nanoTimestamp, frameCount); in HWTEST_F()
|
/foundation/graphic/graphic_2d/frameworks/bootanimation/include/ |
H A D | boot_picture_player.h | 34 void OnVsync();
|
H A D | boot_compile_progress.h | 36 void OnVsync();
|
/foundation/graphic/graphic_2d/frameworks/bootanimation/src/ |
H A D | boot_picture_player.cpp | 61 .callback_ = [this](int64_t, void*) { this->OnVsync(); }, in Play() 128 void BootPicturePlayer::OnVsync() in OnVsync() function in OHOS::BootPicturePlayer
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/ui_extension/mock/ |
H A D | mock_rosen_window.cpp | 61 void RosenWindow::OnVsync(uint64_t nanoTimestamp, uint32_t frameCount) {} in OnVsync() function in OHOS::Ace::NG::RosenWindow
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsvsyncclientohos_fuzzer/ |
H A D | rsvsyncclientohos_fuzzer.cpp | 70 RSVsyncClientOhos::OnVsync(nanoTimestamp, frameCount, &rsVsyncClientOhos);
in DoSomethingInterestingWithMyAPI()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | rosen_window.cpp | 58 window->OnVsync(static_cast<uint64_t>(timeStampNanos), static_cast<uint64_t>(frameCount)); in RosenWindow() 259 void RosenWindow::OnVsync(uint64_t nanoTimestamp, uint32_t frameCount) in OnVsync() function in OHOS::Ace::NG::RosenWindow 261 Window::OnVsync(nanoTimestamp, frameCount); in OnVsync()
|
H A D | rosen_window.h | 123 void OnVsync(uint64_t nanoTimestamp, uint32_t frameCount) override;
|
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/src/ |
H A D | hdi_screen.cpp | 51 void HdiScreen::OnVsync(uint32_t sequence, uint64_t ns, void *data) in OnVsync() function in OHOS::Rosen::HdiScreen 61 // if the sampler->GetHardwareVSyncStatus() is false, this OnVsync callback will be disable in OnVsync() 83 int32_t ret = device_->RegScreenVBlankCallback(screenId_, HdiScreen::OnVsync, this); in Init()
|
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/include/ |
H A D | hdi_screen.h | 61 static void OnVsync(uint32_t sequence, uint64_t ns, void *data);
|
/foundation/window/window_manager/previewer/src/ |
H A D | vsync_station.cpp | 90 void VsyncStation::OnVsync(int64_t timestamp, int64_t frameCount, void* client) in OnVsync() function in OHOS::Rosen::VsyncStation
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/pipeline/ |
H A D | rs_render_thread.h | 132 void OnVsync(uint64_t timestamp, int64_t frameCount);
|
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/fuzztest/hdiscreen_fuzzer/ |
H A D | hdiscreen_fuzzer.cpp | 129 g_hdiScreen->OnVsync(sequence, ns, dt); in DoSomethingInterestingWithMyAPI()
|