Home
last modified time | relevance | path

Searched refs:UpdateShadowPic (Results 1 - 25 of 28) sorted by relevance

12

/base/msdp/device_status/frameworks/native/interaction/src/
H A Dinteraction_manager.cpp177 int32_t InteractionManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() function in OHOS::Msdp::DeviceStatus::InteractionManager
179 return INTER_MGR_IMPL.UpdateShadowPic(shadowInfo); in UpdateShadowPic()
309 int32_t InteractionManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() function in OHOS::Msdp::DeviceStatus::InteractionManager
311 return DRAG_MANAGER.UpdateShadowPic(shadowInfo); in UpdateShadowPic()
H A Dinteraction_manager_impl.cpp323 int32_t InteractionManagerImpl::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() function in OHOS::Msdp::DeviceStatus::InteractionManagerImpl
326 return dragManagerImpl_.UpdateShadowPic(shadowInfo); in UpdateShadowPic()
H A Ddrag_manager_impl.cpp248 int32_t DragManagerImpl::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() function in OHOS::Msdp::DeviceStatus::DragManagerImpl
255 return DeviceStatusClient::GetInstance().UpdateShadowPic(shadowInfo); in UpdateShadowPic()
/base/msdp/device_status/frameworks/native/interaction/include/
H A Ddrag_manager_impl.h53 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
H A Dinteraction_manager_impl.h60 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
/base/msdp/device_status/services/communication/base/
H A Di_devicestatus.h63 virtual int32_t UpdateShadowPic(const ShadowInfo &shadowInfo) = 0;
/base/msdp/device_status/interfaces/innerkits/include/
H A Ddevicestatus_client.h69 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
/base/msdp/device_status/intention/prototype/include/
H A Di_drag_manager.h88 virtual int32_t UpdateShadowPic(const ShadowInfo &shadowInfo) = 0;
/base/msdp/device_status/intention/drag/client/include/
H A Ddrag_client.h47 int32_t UpdateShadowPic(ITunnelClient &tunnel, const ShadowInfo &shadowInfo);
/base/msdp/device_status/intention/drag/server/include/
H A Ddrag_server.h49 int32_t UpdateShadowPic(CallingContext &context, MessageParcel &data, MessageParcel &reply);
/base/msdp/device_status/intention/frameworks/client/include/
H A Dintention_manager.h71 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
/base/msdp/device_status/interfaces/innerkits/interaction/include/
H A Dinteraction_manager.h277 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
/base/msdp/device_status/services/communication/client/include/
H A Ddevicestatus_srv_proxy.h55 virtual int32_t UpdateShadowPic(const ShadowInfo &shadowInfo) override;
/base/msdp/device_status/intention/drag/server/src/
H A Ddrag_server.cpp124 return UpdateShadowPic(context, data, reply); in SetParam()
275 int32_t DragServer::UpdateShadowPic(CallingContext &context, MessageParcel &data, MessageParcel &reply) in UpdateShadowPic() function in OHOS::Msdp::DeviceStatus::DragServer
284 return env_->GetDragManager().UpdateShadowPic(param.shadowInfo_); in UpdateShadowPic()
/base/msdp/device_status/frameworks/native/src/
H A Ddevicestatus_client.cpp426 int32_t DeviceStatusClient::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() function in OHOS::Msdp::DeviceStatus::DeviceStatusClient
430 return devicestatusProxy_->UpdateShadowPic(shadowInfo); in UpdateShadowPic()
/base/msdp/device_status/intention/frameworks/client/src/
H A Dintention_manager.cpp360 int32_t IntentionManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() function in OHOS::Msdp::DeviceStatus::IntentionManager
363 return drag_.UpdateShadowPic(*tunnel_, shadowInfo); in UpdateShadowPic()
/base/msdp/device_status/services/native/include/
H A Ddevicestatus_service.h98 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo) override;
/base/msdp/device_status/services/interaction/drag/include/
H A Ddrag_manager.h80 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo) override;
H A Ddrag_drawing.h252 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
/base/msdp/device_status/services/native/src/
H A Ddevicestatus_service.cpp926 int32_t DeviceStatusService::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() function in OHOS::Msdp::DeviceStatus::DeviceStatusService
930 return this->dragMgr_.UpdateShadowPic(std::cref(shadowInfo)); in UpdateShadowPic()
/base/msdp/device_status/test/unittest/intention/drag/src/
H A Ddrag_manager_test.cpp449 int32_t ret = InteractionManager::GetInstance()->UpdateShadowPic(shadowInfo); in HWTEST_F()
653 ret = InteractionManager::GetInstance()->UpdateShadowPic(shadowInfo); in HWTEST_F()
1098 int32_t ret = InteractionManager::GetInstance()->UpdateShadowPic(shadowInfo); in HWTEST_F()
H A Ddrag_server_test.cpp614 int32_t ret = g_dragServer->UpdateShadowPic(context, datas, reply); in HWTEST_F()
1061 ret = g_dragServer->UpdateShadowPic(context, datas, reply); in HWTEST_F()
/base/msdp/device_status/intention/drag/client/src/
H A Ddrag_client.cpp205 int32_t DragClient::UpdateShadowPic(ITunnelClient &tunnel, const ShadowInfo &shadowInfo) in UpdateShadowPic() function in OHOS::Msdp::DeviceStatus::DragClient
/base/msdp/device_status/services/interaction/drag/src/
H A Ddrag_manager.cpp503 int32_t DragManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() function in OHOS::Msdp::DeviceStatus::DragManager
512 return dragDrawing_.UpdateShadowPic(shadowInfo); in UpdateShadowPic()
/base/msdp/device_status/services/communication/service/src/
H A Ddevicestatus_srv_stub.cpp792 int32_t ret = UpdateShadowPic(shadowInfo); in UpdateShadowPicStub()

Completed in 20 milliseconds

12