/ohos5.0/base/msdp/device_status/test/unittest/frameworks/src/ |
H A D | interaction_drag_drawing_test.cpp | 210 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 255 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 297 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 339 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 376 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 409 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 442 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 474 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 506 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 538 ret = InteractionManager::GetInstance()->StopDrag(dropResult); [all …]
|
H A D | interaction_manager_test.cpp | 1951 InteractionManager::GetInstance()->StopDrag(dropResult); 2001 InteractionManager::GetInstance()->StopDrag(dropResult); 2055 InteractionManager::GetInstance()->StopDrag(dropResult); 2167 InteractionManager::GetInstance()->StopDrag(dropResult); 2225 InteractionManager::GetInstance()->StopDrag(dropResult); 2321 InteractionManager::GetInstance()->StopDrag(dropResult); 2379 InteractionManager::GetInstance()->StopDrag(dropResult); 2411 InteractionManager::GetInstance()->StopDrag(dropResult); 2441 InteractionManager::GetInstance()->StopDrag(dropResult); 2472 InteractionManager::GetInstance()->StopDrag(dropResult); [all …]
|
/ohos5.0/base/msdp/device_status/test/unittest/intention/drag/src/ |
H A D | drag_manager_test.cpp | 482 DragDropResult dropResult { DragResult::DRAG_SUCCESS, variable 513 DragDropResult dropResult { DragResult::DRAG_SUCCESS, variable 545 DragDropResult dropResult { DragResult::DRAG_SUCCESS, variable 581 DragDropResult dropResult { DragResult::DRAG_SUCCESS, variable 619 DragDropResult dropResult { DragResult::DRAG_SUCCESS, variable 656 DragDropResult dropResult { DragResult::DRAG_SUCCESS, variable 691 DragDropResult dropResult { DragResult::DRAG_SUCCESS, variable 726 DragDropResult dropResult { DragResult::DRAG_SUCCESS, variable 761 DragDropResult dropResult { DragResult::DRAG_SUCCESS, variable 1557 StopDragParam param { dropResult }; [all …]
|
/ohos5.0/base/msdp/device_status/services/interaction/drag/src/ |
H A D | drag_manager.cpp | 283 … "drag out packageName:%{public}s", dropResult.mainWindow, dropResult.result, packageName.c_str(), in StopDrag() 299 if (OnStopDrag(dropResult.result, dropResult.hasCustomAnimation, packageName, pid) != RET_OK) { in StopDrag() 304 if (dropResult.result == DragResult::DRAG_SUCCESS && dropResult.mainWindow > 0) { in StopDrag() 311 DragBehavior dragBehavior = dropResult.dragBehavior; in StopDrag() 312 GetDragBehavior(dropResult, dragBehavior); in StopDrag() 313 if (NotifyDragResult(dropResult.result, dragBehavior) != RET_OK) { in StopDrag() 326 dragResult_ = static_cast<DragResult>(dropResult.result); in StopDrag() 566 DragDropResult dropResult { DragResult::DRAG_EXCEPTION, false, -1 }; in OnDragUp() local 568 this->StopDrag(dropResult); in OnDragUp() 1309 if (dropResult.result != DragResult::DRAG_SUCCESS) { in GetDragBehavior() [all …]
|
H A D | drag_hisysevent.cpp | 131 int32_t DragDFX::WriteStopDrag(const DragState &dragState, const DragDropResult &dropResult, in WriteStopDrag() argument 141 dropResult.hasCustomAnimation); in WriteStopDrag() 143 …return WriteModel(DragType::STOP_DRAG_FAIL, "dragstate", curDragState, "animate", dropResult.hasCu… in WriteStopDrag()
|
H A D | event_hub.cpp | 84 DragDropResult dropResult { DragResult::DRAG_CANCEL, false, -1 }; in OnReceiveEvent() local 85 context->GetDragManager().StopDrag(dropResult); in OnReceiveEvent()
|
/ohos5.0/base/msdp/device_status/services/communication/client/src/ |
H A D | devicestatus_srv_proxy.cpp | 489 int32_t DeviceStatusSrvProxy::StopDrag(const DragDropResult &dropResult) in StopDrag() argument 497 …if (dropResult.result < DragResult::DRAG_SUCCESS || dropResult.result > DragResult::DRAG_EXCEPTION… in StopDrag() 498 FI_HILOGE("Invalid result:%{public}d", static_cast<int32_t>(dropResult.result)); in StopDrag() 501 WRITEINT32(data, static_cast<int32_t>(dropResult.result), ERR_INVALID_VALUE); in StopDrag() 502 WRITEBOOL(data, dropResult.hasCustomAnimation, ERR_INVALID_VALUE); in StopDrag() 503 WRITEINT32(data, dropResult.mainWindow, ERR_INVALID_VALUE); in StopDrag() 504 WRITEINT32(data, static_cast<int32_t>(dropResult.dragBehavior), ERR_INVALID_VALUE); in StopDrag()
|
/ohos5.0/base/msdp/device_status/frameworks/native/interaction/src/ |
H A D | interaction_manager.cpp | 108 int32_t InteractionManager::StopDrag(const DragDropResult &dropResult) in StopDrag() argument 110 return INTER_MGR_IMPL.StopDrag(dropResult); in StopDrag()
|
H A D | drag_manager_impl.cpp | 56 int32_t DragManagerImpl::StopDrag(const DragDropResult &dropResult) in StopDrag() argument 59 return DeviceStatusClient::GetInstance().StopDrag(dropResult); in StopDrag()
|
H A D | interaction_manager_impl.cpp | 259 int32_t InteractionManagerImpl::StopDrag(const DragDropResult &dropResult) in StopDrag() argument 262 return dragManagerImpl_.StopDrag(dropResult); in StopDrag()
|
/ohos5.0/base/msdp/device_status/services/communication/service/src/ |
H A D | devicestatus_srv_stub.cpp | 705 DragDropResult dropResult; in StopDragStub() local 706 dropResult.result = static_cast<DragResult>(result); in StopDragStub() 707 dropResult.hasCustomAnimation = hasCustomAnimation; in StopDragStub() 708 dropResult.mainWindow = mainWindow; in StopDragStub() 709 dropResult.dragBehavior = static_cast<DragBehavior>(dragBehavior); in StopDragStub() 710 int32_t ret = StopDrag(dropResult); in StopDragStub()
|
/ohos5.0/base/msdp/device_status/services/interaction/drag/include/ |
H A D | drag_hisysevent.h | 51 static int32_t WriteStopDrag(const DragState &dragState, const DragDropResult &dropResult,
|
H A D | drag_manager.h | 54 …int32_t StopDrag(const DragDropResult &dropResult, const std::string &packageName = "", int32_t pi… 151 void GetDragBehavior(const DragDropResult &dropResult, DragBehavior &dragBehavior);
|
/ohos5.0/base/msdp/device_status/frameworks/native/interaction/include/ |
H A D | drag_manager_impl.h | 42 int32_t StopDrag(const DragDropResult &dropResult);
|
H A D | interaction_manager_impl.h | 51 int32_t StopDrag(const DragDropResult &dropResult);
|
/ohos5.0/foundation/multimodalinput/input/intention/drag/data/src/ |
H A D | drag_params.cpp | 55 StopDragParam::StopDragParam(const DragDropResult &dropResult) in StopDragParam() argument 56 : dropResult_(dropResult) in StopDragParam()
|
/ohos5.0/base/msdp/device_status/intention/drag/data/src/ |
H A D | drag_params.cpp | 55 StopDragParam::StopDragParam(const DragDropResult &dropResult) in StopDragParam() argument 56 : dropResult_(dropResult) in StopDragParam()
|
/ohos5.0/foundation/multimodalinput/input/intention/prototype/include/ |
H A D | i_drag_manager.h | 44 …virtual int32_t StopDrag(const DragDropResult &dropResult, const std::string &packageName = "") = …
|
/ohos5.0/base/msdp/device_status/services/communication/base/ |
H A D | i_devicestatus.h | 51 virtual int32_t StopDrag(const DragDropResult &dropResult) = 0;
|
/ohos5.0/foundation/multimodalinput/input/intention/drag/client/include/ |
H A D | drag_client.h | 40 int32_t StopDrag(ITunnelClient &tunnel, const DragDropResult &dropResult);
|
/ohos5.0/base/msdp/device_status/intention/drag/client/include/ |
H A D | drag_client.h | 40 int32_t StopDrag(ITunnelClient &tunnel, const DragDropResult &dropResult);
|
/ohos5.0/base/msdp/device_status/intention/prototype/include/ |
H A D | i_drag_manager.h | 43 virtual int32_t StopDrag(const DragDropResult &dropResult, const std::string &packageName = "",
|
/ohos5.0/base/msdp/device_status/interfaces/innerkits/include/ |
H A D | devicestatus_client.h | 59 int32_t StopDrag(const DragDropResult &dropResult);
|
/ohos5.0/foundation/multimodalinput/input/intention/frameworks/client/src/ |
H A D | intention_manager.cpp | 280 int32_t IntentionManager::StopDrag(const DragDropResult &dropResult) in StopDrag() argument 283 return drag_.StopDrag(*tunnel_, dropResult); in StopDrag()
|
/ohos5.0/base/msdp/device_status/intention/frameworks/client/src/ |
H A D | intention_manager.cpp | 287 int32_t IntentionManager::StopDrag(const DragDropResult &dropResult) in StopDrag() argument 290 return drag_.StopDrag(*tunnel_, dropResult); in StopDrag()
|