/base/msdp/device_status/services/interaction/drag/include/ |
D | drag_manager.h | 47 int32_t StopDrag(DragResult result, bool hasCustomAnimation) override; 95 int32_t OnStopDrag(DragResult result, bool hasCustomAnimation); 101 int32_t HandleDragResult(DragResult result, bool hasCustomAnimation);
|
/base/msdp/device_status/frameworks/native/interaction/src/ |
D | interaction_manager.cpp | 81 int32_t InteractionManager::StopDrag(DragResult result, bool hasCustomAnimation) in StopDrag() argument 83 return INTER_MGR_IMPL.StopDrag(result, hasCustomAnimation); in StopDrag()
|
D | drag_manager_impl.cpp | 65 int32_t DragManagerImpl::StopDrag(DragResult result, bool hasCustomAnimation) in StopDrag() argument 68 return DeviceStatusClient::GetInstance().StopDrag(result, hasCustomAnimation); in StopDrag()
|
D | interaction_manager_impl.cpp | 216 int32_t InteractionManagerImpl::StopDrag(DragResult result, bool hasCustomAnimation) in StopDrag() argument 219 return dragManagerImpl_.StopDrag(result, hasCustomAnimation); in StopDrag()
|
/base/msdp/device_status/services/context/include/ |
D | i_drag_manager.h | 38 virtual int32_t StopDrag(DragResult result, bool hasCustomAnimation) = 0;
|
/base/msdp/device_status/frameworks/native/interaction/include/ |
D | drag_manager_impl.h | 43 int32_t StopDrag(DragResult result, bool hasCustomAnimation);
|
D | interaction_manager_impl.h | 46 int32_t StopDrag(DragResult result, bool hasCustomAnimation);
|
/base/msdp/device_status/services/interaction/drag/src/ |
D | drag_manager.cpp | 113 int32_t DragManager::StopDrag(DragResult result, bool hasCustomAnimation) in StopDrag() argument 125 if (OnStopDrag(result, hasCustomAnimation) != RET_OK) { in StopDrag() 549 int32_t DragManager::OnStopDrag(DragResult result, bool hasCustomAnimation) in OnStopDrag() argument 572 return HandleDragResult(result, hasCustomAnimation); in OnStopDrag() 638 int32_t DragManager::HandleDragResult(DragResult result, bool hasCustomAnimation) in HandleDragResult() argument 643 if (!hasCustomAnimation) { in HandleDragResult() 653 if (!hasCustomAnimation) { in HandleDragResult()
|
/base/msdp/device_status/services/native/include/ |
D | devicestatus_service.h | 77 int32_t StopDrag(DragResult result, bool hasCustomAnimation) override; 105 int32_t OnStopDrag(DragResult result, bool hasCustomAnimation);
|
/base/msdp/device_status/interfaces/innerkits/interaction/include/ |
D | interaction_manager.h | 120 int32_t StopDrag(DragResult result, bool hasCustomAnimation);
|
/base/msdp/device_status/services/communication/base/ |
D | i_devicestatus.h | 49 virtual int32_t StopDrag(DragResult result, bool hasCustomAnimation) = 0;
|
/base/msdp/device_status/interfaces/innerkits/include/ |
D | devicestatus_client.h | 57 int32_t StopDrag(DragResult result, bool hasCustomAnimation);
|
/base/msdp/device_status/services/communication/client/include/ |
D | devicestatus_srv_proxy.h | 51 virtual int32_t StopDrag(DragResult result, bool hasCustomAnimation) override;
|
/base/msdp/device_status/frameworks/native/src/ |
D | devicestatus_client.cpp | 369 int32_t DeviceStatusClient::StopDrag(DragResult result, bool hasCustomAnimation) in StopDrag() argument 374 return devicestatusProxy_->StopDrag(result, hasCustomAnimation); in StopDrag()
|
/base/msdp/device_status/services/communication/service/src/ |
D | devicestatus_srv_stub.cpp | 370 bool hasCustomAnimation = false; in StopDragStub() local 371 READBOOL(data, hasCustomAnimation, E_DEVICESTATUS_READ_PARCEL_ERROR); in StopDragStub() 372 int32_t ret = StopDrag(static_cast<DragResult>(result), hasCustomAnimation); in StopDragStub()
|
/base/msdp/device_status/services/native/src/ |
D | devicestatus_service.cpp | 684 int32_t DeviceStatusService::StopDrag(DragResult result, bool hasCustomAnimation) in StopDrag() argument 688 std::bind(&DeviceStatusService::OnStopDrag, this, result, hasCustomAnimation)); in StopDrag() 924 int32_t DeviceStatusService::OnStopDrag(DragResult result, bool hasCustomAnimation) in OnStopDrag() argument 927 int32_t ret = dragMgr_.StopDrag(result, hasCustomAnimation); in OnStopDrag()
|
/base/msdp/device_status/services/communication/client/src/ |
D | devicestatus_srv_proxy.cpp | 385 int32_t DeviceStatusSrvProxy::StopDrag(DragResult result, bool hasCustomAnimation) in StopDrag() argument 398 WRITEBOOL(data, hasCustomAnimation, ERR_INVALID_VALUE); in StopDrag()
|