/base/msdp/device_status/utils/common/src/ |
H A D | drag_data_packer.cpp | 85 for (const auto& shadowInfo : dragData.shadowInfos) { in CheckDragData() 86 if (ShadowPacker::CheckShadowInfo(shadowInfo) != RET_OK) { in CheckDragData() 133 ShadowInfo shadowInfo; in UnMarshalling() local 134 if (UnPackShadowInfo(data, shadowInfo, isCross) != RET_OK) { in UnMarshalling() 138 CHKPR(shadowInfo.pixelMap, RET_ERR); in UnMarshalling() 139 shadowInfos.push_back(shadowInfo); in UnMarshalling() 144 int32_t ShadowPacker::PackUpShadowInfo(const ShadowInfo &shadowInfo, Parcel &data, bool isCross) in PackUpShadowInfo() argument 147 CHKPR(shadowInfo.pixelMap, RET_ERR); in PackUpShadowInfo() 151 if (!shadowInfo.pixelMap->EncodeTlv(pixelBuffer)) { in PackUpShadowInfo() 158 if (!shadowInfo in PackUpShadowInfo() 168 UnPackShadowInfo(Parcel &data, ShadowInfo &shadowInfo, bool isCross) UnPackShadowInfo() argument 189 CheckShadowInfo(const ShadowInfo &shadowInfo) CheckShadowInfo() argument [all...] |
/base/msdp/device_status/rust/data/binding/src/ |
H A D | fusion_data_binding.cpp | 35 cdrag->shadowInfo.x = drag->shadowInfo.x; in CDragDataFrom() 36 cdrag->shadowInfo.y = drag->shadowInfo.y; in CDragDataFrom()
|
/base/msdp/device_status/intention/drag/client/src/ |
H A D | drag_client.cpp | 39 for (const auto& shadowInfo : dragData.shadowInfos) { in StartDrag() 40 CHKPR(shadowInfo.pixelMap, RET_ERR); in StartDrag() 41 if ((shadowInfo.x > 0) || (shadowInfo.y > 0) || in StartDrag() 42 (shadowInfo.x < -shadowInfo.pixelMap->GetWidth()) || in StartDrag() 43 (shadowInfo.y < -shadowInfo.pixelMap->GetHeight())) { in StartDrag() 45 shadowInfo.x, shadowInfo in StartDrag() 205 UpdateShadowPic(ITunnelClient &tunnel, const ShadowInfo &shadowInfo) UpdateShadowPic() argument [all...] |
/base/msdp/device_status/utils/common/include/ |
H A D | drag_data_packer.h | 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/services/interaction/drag/src/ |
H A D | drag_data_manager.cpp | 58 ShadowInfo shadowInfo; in UpdateShadowInfos() local 59 shadowInfo.pixelMap = pixelMap; in UpdateShadowInfos() 60 dragData_.shadowInfos.push_back(shadowInfo); in UpdateShadowInfos()
|
H A D | drag_manager.cpp | 198 for (const auto& shadowInfo : dragData.shadowInfos) { in PrintDragData() 199 CHKPV(shadowInfo.pixelMap); in PrintDragData() 202 static_cast<int32_t>(shadowInfo.pixelMap->GetPixelFormat()), in PrintDragData() 203 static_cast<int32_t>(shadowInfo.pixelMap->GetAlphaType()), in PrintDragData() 204 static_cast<int32_t>(shadowInfo.pixelMap->GetAllocatorType()), in PrintDragData() 205 shadowInfo.pixelMap->GetWidth(), shadowInfo.pixelMap->GetHeight(), shadowInfo.x, shadowInfo.y); in PrintDragData() 503 int32_t DragManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() argument [all...] |
/base/msdp/device_status/rust/data/binding/include/ |
H A D | fusion_data_binding.h | 32 struct CShadowInfo shadowInfo; member
|
/base/msdp/device_status/frameworks/native/interaction/src/ |
H A D | interaction_manager.cpp | 177 int32_t InteractionManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() argument 179 return INTER_MGR_IMPL.UpdateShadowPic(shadowInfo); in UpdateShadowPic() 309 int32_t InteractionManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() argument 311 return DRAG_MANAGER.UpdateShadowPic(shadowInfo); in UpdateShadowPic()
|
H A D | drag_manager_impl.cpp | 248 int32_t DragManagerImpl::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() argument 251 if (ShadowPacker::CheckShadowInfo(shadowInfo) != RET_OK) { in UpdateShadowPic() 255 return DeviceStatusClient::GetInstance().UpdateShadowPic(shadowInfo); in UpdateShadowPic()
|
H A D | interaction_manager_impl.cpp | 323 int32_t InteractionManagerImpl::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() argument 326 return dragManagerImpl_.UpdateShadowPic(shadowInfo); in UpdateShadowPic()
|
/base/msdp/device_status/frameworks/native/interaction/include/ |
H A D | drag_manager_impl.h | 53 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
|
H A D | interaction_manager_impl.h | 60 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
|
/base/msdp/device_status/services/communication/base/ |
H A D | i_devicestatus.h | 63 virtual int32_t UpdateShadowPic(const ShadowInfo &shadowInfo) = 0;
|
/base/msdp/device_status/interfaces/innerkits/include/ |
H A D | devicestatus_client.h | 69 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
|
/base/msdp/device_status/test/unittest/intention/drag/src/ |
H A D | drag_manager_test.cpp | 448 ShadowInfo shadowInfo = { pixelMap, 1, 0 }; in HWTEST_F() local 449 int32_t ret = InteractionManager::GetInstance()->UpdateShadowPic(shadowInfo); in HWTEST_F() 652 ShadowInfo shadowInfo = { pixelMap, 0, 0 }; in HWTEST_F() local 653 ret = InteractionManager::GetInstance()->UpdateShadowPic(shadowInfo); in HWTEST_F() 1097 ShadowInfo shadowInfo = { pixelMap, 0, 0 }; in HWTEST_F() local 1098 int32_t ret = InteractionManager::GetInstance()->UpdateShadowPic(shadowInfo); in HWTEST_F() 1629 ShadowInfo shadowInfo = { pixelMap, 0, 0 }; in HWTEST_F() local 1631 UpdateShadowPicParam param { shadowInfo }; in HWTEST_F() 1668 ShadowInfo shadowInfo = { pixelMap, 1, 0 }; in HWTEST_F() local 1670 EXPECT_TRUE(shadowInfo ! in HWTEST_F() [all...] |
/base/msdp/device_status/intention/prototype/include/ |
H A D | i_drag_manager.h | 88 virtual int32_t UpdateShadowPic(const ShadowInfo &shadowInfo) = 0;
|
/base/msdp/device_status/intention/drag/client/include/ |
H A D | drag_client.h | 47 int32_t UpdateShadowPic(ITunnelClient &tunnel, const ShadowInfo &shadowInfo);
|
/base/msdp/device_status/intention/frameworks/client/include/ |
H A D | intention_manager.h | 71 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
|
/base/msdp/device_status/interfaces/innerkits/interaction/include/ |
H A D | interaction_manager.h | 273 * @param shadowInfo Indicates the new shadow thumbnail information.
277 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
|
/base/msdp/device_status/services/communication/client/include/ |
H A D | devicestatus_srv_proxy.h | 55 virtual int32_t UpdateShadowPic(const ShadowInfo &shadowInfo) override;
|
/base/msdp/device_status/frameworks/native/src/ |
H A D | devicestatus_client.cpp | 426 int32_t DeviceStatusClient::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() argument 430 return devicestatusProxy_->UpdateShadowPic(shadowInfo); in UpdateShadowPic()
|
/base/msdp/device_status/intention/drag/data/src/ |
H A D | drag_params.cpp | 129 UpdateShadowPicParam::UpdateShadowPicParam(const ShadowInfo &shadowInfo) in UpdateShadowPicParam() argument 130 : shadowInfo_(shadowInfo) in UpdateShadowPicParam()
|
/base/msdp/device_status/intention/frameworks/client/src/ |
H A D | intention_manager.cpp | 360 int32_t IntentionManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() argument 363 return drag_.UpdateShadowPic(*tunnel_, shadowInfo); in UpdateShadowPic()
|
/base/msdp/device_status/services/communication/service/src/ |
H A D | devicestatus_srv_stub.cpp | 783 ShadowInfo shadowInfo; in UpdateShadowPicStub() local 784 if (ShadowPacker::UnPackShadowInfo(data, shadowInfo) != RET_OK) { in UpdateShadowPicStub() 788 if (ShadowPacker::CheckShadowInfo(shadowInfo) != RET_OK) { in UpdateShadowPicStub() 792 int32_t ret = UpdateShadowPic(shadowInfo); in UpdateShadowPicStub()
|
/base/msdp/device_status/intention/drag/data/include/ |
H A D | drag_params.h | 108 explicit UpdateShadowPicParam(const ShadowInfo &shadowInfo);
|