Home
last modified time | relevance | path

Searched refs:hasCustomAnimation (Results 1 – 17 of 17) sorted by relevance

/base/msdp/device_status/services/interaction/drag/include/
Ddrag_manager.h47 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/
Dinteraction_manager.cpp81 int32_t InteractionManager::StopDrag(DragResult result, bool hasCustomAnimation) in StopDrag() argument
83 return INTER_MGR_IMPL.StopDrag(result, hasCustomAnimation); in StopDrag()
Ddrag_manager_impl.cpp65 int32_t DragManagerImpl::StopDrag(DragResult result, bool hasCustomAnimation) in StopDrag() argument
68 return DeviceStatusClient::GetInstance().StopDrag(result, hasCustomAnimation); in StopDrag()
Dinteraction_manager_impl.cpp216 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/
Di_drag_manager.h38 virtual int32_t StopDrag(DragResult result, bool hasCustomAnimation) = 0;
/base/msdp/device_status/frameworks/native/interaction/include/
Ddrag_manager_impl.h43 int32_t StopDrag(DragResult result, bool hasCustomAnimation);
Dinteraction_manager_impl.h46 int32_t StopDrag(DragResult result, bool hasCustomAnimation);
/base/msdp/device_status/services/interaction/drag/src/
Ddrag_manager.cpp113 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/
Ddevicestatus_service.h77 int32_t StopDrag(DragResult result, bool hasCustomAnimation) override;
105 int32_t OnStopDrag(DragResult result, bool hasCustomAnimation);
/base/msdp/device_status/interfaces/innerkits/interaction/include/
Dinteraction_manager.h120 int32_t StopDrag(DragResult result, bool hasCustomAnimation);
/base/msdp/device_status/services/communication/base/
Di_devicestatus.h49 virtual int32_t StopDrag(DragResult result, bool hasCustomAnimation) = 0;
/base/msdp/device_status/interfaces/innerkits/include/
Ddevicestatus_client.h57 int32_t StopDrag(DragResult result, bool hasCustomAnimation);
/base/msdp/device_status/services/communication/client/include/
Ddevicestatus_srv_proxy.h51 virtual int32_t StopDrag(DragResult result, bool hasCustomAnimation) override;
/base/msdp/device_status/frameworks/native/src/
Ddevicestatus_client.cpp369 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/
Ddevicestatus_srv_stub.cpp370 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/
Ddevicestatus_service.cpp684 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/
Ddevicestatus_srv_proxy.cpp385 int32_t DeviceStatusSrvProxy::StopDrag(DragResult result, bool hasCustomAnimation) in StopDrag() argument
398 WRITEBOOL(data, hasCustomAnimation, ERR_INVALID_VALUE); in StopDrag()