Home
last modified time | relevance | path

Searched refs:ShadowInfo (Results 1 - 25 of 36) sorted by relevance

12

/base/msdp/device_status/utils/common/include/
H A Ddrag_data_packer.h41 static int32_t Marshalling(const std::vector<ShadowInfo> &shadowInfos, Parcel &data, bool isCross = false);
42 static int32_t UnMarshalling(Parcel &data, std::vector<ShadowInfo> &shadowInfos, bool isCross = false);
43 static int32_t PackUpShadowInfo(const ShadowInfo &shadowInfo, Parcel &data, bool isCross = false);
44 static int32_t UnPackShadowInfo(Parcel &data, ShadowInfo &shadowInfo, bool isCross = false);
45 static int32_t CheckShadowInfo(const ShadowInfo &shadowInfo);
/base/msdp/device_status/rust/data/sys/src/ipc/
H A Ddrag.rs32 /// C representation of [`ShadowInfo`].
55 pub struct ShadowInfo { structure names
60 impl ShadowInfo { impls
61 /// Converts `CShadowInfo` type to `ShadowInfo` type
64 call_debug_enter!("ShadowInfo::from_c"); in from_c()
72 impl Serialize for ShadowInfo {
75 call_debug_enter!("ShadowInfo::serialize"); in serialize()
82 impl Deserialize for ShadowInfo {
85 call_debug_enter!("ShadowInfo::deserialize"); in deserialize()
97 pub shadow_info: ShadowInfo,
[all...]
/base/msdp/device_status/utils/common/src/
H A Ddrag_data_packer.cpp101 int32_t ShadowPacker::Marshalling(const std::vector<ShadowInfo> &shadowInfos, Parcel &data, bool isCross) in Marshalling()
123 int32_t ShadowPacker::UnMarshalling(Parcel &data, std::vector<ShadowInfo> &shadowInfos, bool isCross) in UnMarshalling()
133 ShadowInfo shadowInfo; in UnMarshalling()
144 int32_t ShadowPacker::PackUpShadowInfo(const ShadowInfo &shadowInfo, Parcel &data, bool isCross) in PackUpShadowInfo()
168 int32_t ShadowPacker::UnPackShadowInfo(Parcel &data, ShadowInfo &shadowInfo, bool isCross) in UnPackShadowInfo()
189 int32_t ShadowPacker::CheckShadowInfo(const ShadowInfo &shadowInfo) in CheckShadowInfo()
/base/msdp/device_status/interfaces/innerkits/interaction/include/
H A Ddrag_data.h38 struct ShadowInfo { struct
43 bool operator == (const ShadowInfo &other) const in operator ==()
54 bool operator != (const ShadowInfo &other) const in operator !=()
61 std::vector<ShadowInfo> shadowInfos;
H A Dinteraction_manager.h277 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
/base/msdp/device_status/services/interaction/drag/src/
H A Ddrag_data_manager.cpp51 void DragDataManager::SetShadowInfos(const std::vector<ShadowInfo> &shadowInfos) in SetShadowInfos()
58 ShadowInfo shadowInfo; in UpdateShadowInfos()
/base/msdp/device_status/services/interaction/drag/include/
H A Ddrag_data_manager.h38 void SetShadowInfos(const std::vector<ShadowInfo> &shadowInfos);
H A Ddrag_manager.h80 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo) override;
/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/drag/data/include/
H A Ddrag_params.h108 explicit UpdateShadowPicParam(const ShadowInfo &shadowInfo);
113 ShadowInfo shadowInfo_ {};
/base/msdp/device_status/frameworks/native/interaction/src/
H A Dinteraction_manager.cpp177 int32_t InteractionManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic()
309 int32_t InteractionManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic()
H A Dinteraction_manager_impl.cpp323 int32_t InteractionManagerImpl::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic()
H A Ddrag_manager_impl.cpp248 int32_t DragManagerImpl::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic()
/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/frameworks/client/include/
H A Dintention_manager.h71 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/test/unittest/intention/drag/src/
H A Ddrag_manager_test.cpp448 ShadowInfo shadowInfo = { pixelMap, 1, 0 }; in HWTEST_F()
652 ShadowInfo shadowInfo = { pixelMap, 0, 0 }; in HWTEST_F()
1097 ShadowInfo shadowInfo = { pixelMap, 0, 0 }; in HWTEST_F()
1629 ShadowInfo shadowInfo = { pixelMap, 0, 0 }; in HWTEST_F()
1668 ShadowInfo shadowInfo = { pixelMap, 1, 0 }; in HWTEST_F()
1669 ShadowInfo otherShadowInfo = {}; in HWTEST_F()
/base/msdp/device_status/services/native/include/
H A Ddevicestatus_service.h98 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo) override;
/base/msdp/device_status/frameworks/native/src/
H A Ddevicestatus_client.cpp426 int32_t DeviceStatusClient::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic()
/base/msdp/device_status/intention/drag/data/src/
H A Ddrag_params.cpp129 UpdateShadowPicParam::UpdateShadowPicParam(const ShadowInfo &shadowInfo) in UpdateShadowPicParam()
/base/msdp/device_status/intention/frameworks/client/src/
H A Dintention_manager.cpp360 int32_t IntentionManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic()

Completed in 13 milliseconds

12