Home
last modified time | relevance | path

Searched refs:dropResult (Results 1 – 25 of 40) sorted by relevance

12

/ohos5.0/base/msdp/device_status/test/unittest/frameworks/src/
H A Dinteraction_drag_drawing_test.cpp210 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 Dinteraction_manager_test.cpp1951 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 Ddrag_manager_test.cpp482 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 Ddrag_manager.cpp283 … "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 Ddrag_hisysevent.cpp131 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 Devent_hub.cpp84 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 Ddevicestatus_srv_proxy.cpp489 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 Dinteraction_manager.cpp108 int32_t InteractionManager::StopDrag(const DragDropResult &dropResult) in StopDrag() argument
110 return INTER_MGR_IMPL.StopDrag(dropResult); in StopDrag()
H A Ddrag_manager_impl.cpp56 int32_t DragManagerImpl::StopDrag(const DragDropResult &dropResult) in StopDrag() argument
59 return DeviceStatusClient::GetInstance().StopDrag(dropResult); in StopDrag()
H A Dinteraction_manager_impl.cpp259 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 Ddevicestatus_srv_stub.cpp705 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 Ddrag_hisysevent.h51 static int32_t WriteStopDrag(const DragState &dragState, const DragDropResult &dropResult,
H A Ddrag_manager.h54 …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 Ddrag_manager_impl.h42 int32_t StopDrag(const DragDropResult &dropResult);
H A Dinteraction_manager_impl.h51 int32_t StopDrag(const DragDropResult &dropResult);
/ohos5.0/foundation/multimodalinput/input/intention/drag/data/src/
H A Ddrag_params.cpp55 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 Ddrag_params.cpp55 StopDragParam::StopDragParam(const DragDropResult &dropResult) in StopDragParam() argument
56 : dropResult_(dropResult) in StopDragParam()
/ohos5.0/foundation/multimodalinput/input/intention/prototype/include/
H A Di_drag_manager.h44 …virtual int32_t StopDrag(const DragDropResult &dropResult, const std::string &packageName = "") = …
/ohos5.0/base/msdp/device_status/services/communication/base/
H A Di_devicestatus.h51 virtual int32_t StopDrag(const DragDropResult &dropResult) = 0;
/ohos5.0/foundation/multimodalinput/input/intention/drag/client/include/
H A Ddrag_client.h40 int32_t StopDrag(ITunnelClient &tunnel, const DragDropResult &dropResult);
/ohos5.0/base/msdp/device_status/intention/drag/client/include/
H A Ddrag_client.h40 int32_t StopDrag(ITunnelClient &tunnel, const DragDropResult &dropResult);
/ohos5.0/base/msdp/device_status/intention/prototype/include/
H A Di_drag_manager.h43 virtual int32_t StopDrag(const DragDropResult &dropResult, const std::string &packageName = "",
/ohos5.0/base/msdp/device_status/interfaces/innerkits/include/
H A Ddevicestatus_client.h59 int32_t StopDrag(const DragDropResult &dropResult);
/ohos5.0/foundation/multimodalinput/input/intention/frameworks/client/src/
H A Dintention_manager.cpp280 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 Dintention_manager.cpp287 int32_t IntentionManager::StopDrag(const DragDropResult &dropResult) in StopDrag() argument
290 return drag_.StopDrag(*tunnel_, dropResult); in StopDrag()

12