/foundation/window/window_manager/wm/test/unittest/ |
H A D | vsync_station_test.cpp | 57 std::shared_ptr<VsyncStation> vsyncStation = std::make_shared<VsyncStation>(nodeId); in HWTEST_F() 71 std::shared_ptr<VsyncStation> vsyncStation0 = std::make_shared<VsyncStation>(nodeId0); in HWTEST_F() 76 std::shared_ptr<VsyncStation> vsyncStation1 = std::make_shared<VsyncStation>(nodeId1); in HWTEST_F() 90 std::shared_ptr<VsyncStation> vsyncStation0 = std::make_shared<VsyncStation>(nodeId0); in HWTEST_F() 94 std::shared_ptr<VsyncStation> vsyncStation1 = std::make_shared<VsyncStation>(nodeId in HWTEST_F() [all...] |
H A D | window_impl_test5.cpp | 587 window->vsyncStation_ = std::make_shared<VsyncStation>(1); in HWTEST_F() 614 window->vsyncStation_ = std::make_shared<VsyncStation>(1); in HWTEST_F()
|
H A D | window_session_impl_test2.cpp | 476 vsyncStation = std::make_shared<VsyncStation>(DisplayId(0)); in HWTEST_F() 498 vsyncStation = std::make_shared<VsyncStation>(DisplayId(0)); in HWTEST_F()
|
/foundation/window/window_manager/previewer/src/ |
H A D | vsync_station.cpp | 26 constexpr HiviewDFX::HiLogLabel LABEL = {LOG_CORE, HILOG_DOMAIN_WINDOW, "VsyncStation"}; 29 VsyncStation::VsyncStation(NodeId nodeId) : nodeId_(nodeId) in VsyncStation() function in OHOS::Rosen::VsyncStation 34 void VsyncStation::RequestVsync(const std::shared_ptr<VsyncCallback>& vsyncCallback) in RequestVsync() 60 int64_t VsyncStation::GetVSyncPeriod() in GetVSyncPeriod() 65 void VsyncStation::Init() in Init() 69 void VsyncStation::RemoveCallback() in RemoveCallback() 76 void VsyncStation::VsyncCallbackInner(int64_t timestamp, int64_t frameCount) in VsyncCallbackInner() 90 void VsyncStation::OnVsync(int64_t timestamp, int64_t frameCount, void* client) in OnVsync() 92 auto vsyncClient = static_cast<VsyncStation*>(clien in OnVsync() [all...] |
H A D | window_impl.cpp | 64 vsyncStation_ = std::make_shared<VsyncStation>(surfaceNode_->GetId()); in CreateSurfaceNode()
|
/foundation/window/window_manager/wm/src/ |
H A D | vsync_station.cpp | 37 VsyncStation::VsyncStation(NodeId nodeId, const std::shared_ptr<AppExecFwk::EventHandler>& vsyncHandler) in VsyncStation() function in OHOS::Rosen::VsyncStation 56 VsyncStation::~VsyncStation() in ~VsyncStation() 61 void VsyncStation::Destroy() in Destroy() 70 bool VsyncStation::IsVsyncReceiverCreated() in IsVsyncReceiverCreated() 75 std::shared_ptr<VSyncReceiver> VsyncStation::GetOrCreateVsyncReceiver() in GetOrCreateVsyncReceiver() 81 std::shared_ptr<VSyncReceiver> VsyncStation::GetOrCreateVsyncReceiverLocked() in GetOrCreateVsyncReceiverLocked() 84 TLOGW(WmsLogTag::WMS_MAIN, "VsyncStation has been destroyed"); in GetOrCreateVsyncReceiverLocked() 106 __attribute__((no_sanitize("cfi"))) void VsyncStation [all...] |
H A D | screen_scene.cpp | 40 vsyncStation_ = std::make_shared<VsyncStation>(nodeId);
in ScreenScene()
|
H A D | root_scene.cpp | 77 vsyncStation_ = std::make_shared<VsyncStation>(nodeId); in RootScene()
|
H A D | window_impl.cpp | 115 vsyncStation_ = std::make_shared<VsyncStation>(surfaceNode_->GetId()); in WindowImpl()
|
H A D | window_session_impl.cpp | 199 vsyncStation_ = std::make_shared<VsyncStation>(surfaceNode_->GetId()); in WindowSessionImpl()
|
/foundation/window/window_manager/wm/include/ |
H A D | vsync_station.h | 32 class VsyncStation : public std::enable_shared_from_this<VsyncStation> { class 34 explicit VsyncStation(NodeId nodeId, 36 ~VsyncStation();
|
H A D | screen_scene.h | 91 std::shared_ptr<VsyncStation> vsyncStation_ = nullptr;
|
H A D | root_scene.h | 121 std::shared_ptr<VsyncStation> vsyncStation_ = nullptr;
|
H A D | window_session_impl.h | 368 std::shared_ptr<VsyncStation> vsyncStation_ = nullptr;
|
H A D | window_impl.h | 501 std::shared_ptr<VsyncStation> vsyncStation_ = nullptr;
|
/foundation/window/window_manager/previewer/include/ |
H A D | vsync_station.h | 34 class VsyncStation { class 36 explicit VsyncStation(NodeId nodeId); 37 ~VsyncStation() in ~VsyncStation()
|
H A D | window_impl.h | 290 std::shared_ptr<VsyncStation> vsyncStation_ = nullptr;
|
/foundation/window/window_manager/wmserver/include/ |
H A D | drag_controller.h | 101 std::shared_ptr<VsyncStation> GetVsyncStationByWindowId(uint32_t windowId); 112 std::map<NodeId, std::shared_ptr<VsyncStation>> vsyncStationMap_;
|
/foundation/window/window_manager/wmserver/test/unittest/ |
H A D | drag_controller_test.cpp | 228 std::shared_ptr<VsyncStation> vsyncStation = std::make_shared<VsyncStation>(nodeId); in HWTEST_F() 262 std::shared_ptr<VsyncStation> vsyncStation = std::make_shared<VsyncStation>(nodeId); in HWTEST_F() 264 std::shared_ptr<VsyncStation> vsyncStationRes = moveDragController_->GetVsyncStationByWindowId(windowId); in HWTEST_F() 279 std::shared_ptr<VsyncStation> vsyncStation = moveDragController_->GetVsyncStationByWindowId(windowId); in HWTEST_F()
|
/foundation/window/window_manager/wmserver/src/ |
H A D | drag_controller.cpp | 539 std::shared_ptr<VsyncStation> MoveDragController::GetVsyncStationByWindowId(uint32_t windowId) in GetVsyncStationByWindowId() 560 auto vsyncStation = std::make_shared<VsyncStation>(node->surfaceNode_->GetId(), inputEventHandler_); in GetVsyncStationByWindowId()
|