/base/msdp/device_status/tools/vdev/src/ |
H A D | virtual_mouse.cpp | 166 void VirtualMouse::Move(int32_t dx, int32_t dy) in Move() function in OHOS::Msdp::DeviceStatus::VirtualMouse 216 Move(MOVE_VALUE_X, MOVE_VALUE_Y); in MoveTo() 237 Move(x - monitor->GetX(), y - monitor->GetY()); in MoveTo() 259 Move(MOVE_VALUE_X, MOVE_VALUE_Y); in MoveProcess() 260 Move(-MOVE_VALUE_Y, -MOVE_VALUE_X); in MoveProcess() 266 Move(dx, dy); in MoveProcess() 276 Move(targetX - currentX, targetY - currentY); in MoveProcess()
|
H A D | virtual_touchscreen.cpp | 157 int32_t VirtualTouchScreen::Move(int32_t slot, int32_t dx, int32_t dy) in Move() function in OHOS::Msdp::DeviceStatus::VirtualTouchScreen 175 FI_HILOGD("Move [%{public}d] from (%{public}d, %{public}d) to (%{public}d, %{public}d)", in Move() 212 return Move(slot, x - slots_[slot].coord.x, y - slots_[slot].coord.y); in MoveTo()
|
H A D | virtual_touchscreen_builder.cpp | 131 std::cout << " Move the touch <SLOT> along (dx, dy) for one step." << std::endl; in ShowUsage() 133 std::cout << " Move the touch <SLOT> to (x, y)." << std::endl; in ShowUsage() 314 VirtualTouchScreen::GetDevice()->Move(slot, dx, dy); in ReadMoveAction() 465 VirtualTouchScreen::GetDevice()->Move(slot, dx, dy); in HandleMove()
|
H A D | virtual_mouse_builder.cpp | 96 std::cout << " Move the mouse along <dx, dy>; if <dy> is missing, then set dy=dx" << std::endl; in ShowUsage() 97 std::cout << " -M <x> <y> Move the pointer to <x, y>" << std::endl; in ShowUsage() 438 VirtualMouse::GetDevice()->Move(dx, dy); in HandleMove()
|
/base/msdp/device_status/tools/vdev/include/ |
H A D | virtual_mouse.h | 35 void Move(int32_t dx, int32_t dy);
|
H A D | virtual_touchscreen.h | 34 int32_t Move(int32_t slot, int32_t dx, int32_t dy);
|
/base/hiviewdfx/hiview/interfaces/js/napi/src/ |
H A D | hiview_napi_adapter.cpp | 45 void HiviewNapiAdapter::Move(napi_env env, HiviewFileParams* params)
in Move() function in OHOS::HiviewDFX::HiviewNapiAdapter 57 params->result = HiviewServiceAgent::GetInstance().Move(params->logType, params->logName, params->destDir);
in MoveFileExecution()
|
H A D | napi_hiview_js.cpp | 113 isMove ? HiviewNapiAdapter::Move(env, hiviewFileParams) : HiviewNapiAdapter::Copy(env, hiviewFileParams);
in CopyOrMoveFile() 126 static napi_value Move(napi_env env, napi_callback_info info)
in Move() function 172 DECLARE_NAPI_FUNCTION("move", Move),
in Init()
|
H A D | hiview_service_agent.cpp | 56 int32_t HiviewServiceAgent::Move(const std::string& logType, const std::string& logName, const std::string& dest)
in Move() function in OHOS::HiviewDFX::HiviewServiceAgent 74 return isMove ? proxy.Move(logType, logName, dest) : proxy.Copy(logType, logName, dest);
in CopyOrMoveFile()
|
/base/hiviewdfx/hiview/interfaces/js/napi/include/ |
H A D | hiview_napi_adapter.h | 39 static void Move(napi_env env, HiviewFileParams* params);
|
H A D | hiview_service_agent.h | 32 int32_t Move(const std::string& logType, const std::string& logName, const std::string& dest);
|
/base/hiviewdfx/hiview/adapter/service/test/unittest/common/ |
H A D | adapter_loglibrary_ability_test.cpp | 117 * @tc.desc: Check Func Move 125 int32_t result = ability.Move(LOG_TYPE, fileName, DEST_PATH); in HWTEST_F() 131 * @tc.desc: Check Func Move 138 int32_t result = ability.Move(NON_LOG_TYPE, fileName, DEST_PATH); in HWTEST_F()
|
/base/hiviewdfx/hiview/adapter/service/common/include/ |
H A D | ihiview_service_ability.h | 37 virtual int32_t Move(const std::string& logType, const std::string& logName, const std::string& dest) = 0;
|
/base/hiviewdfx/hiview/interfaces/js/napi/test/unittest/common/ |
H A D | loglibrary_agent_test.cpp | 70 std::string fileName = "Move.txt"; in HWTEST_F() 72 int32_t result = HiviewServiceAgent::GetInstance().Move(LOG_TYPE, fileName, DEST_PATH); in HWTEST_F()
|
/base/hiviewdfx/hiview/adapter/service/client/include/ |
H A D | hiview_service_ability_proxy.h | 36 int32_t Move(const std::string& logType, const std::string& logName, const std::string& dest) override;
|
/base/hiviewdfx/hiview/service/ |
H A D | hiview_service.h | 42 int32_t Move(const std::string& srcFilePath, const std::string& destFilePath);
|
H A D | hiview_service.cpp | 281 int32_t HiviewService::Move(const std::string& srcFilePath, const std::string& destFilePath)
in Move() function in OHOS::HiviewDFX::HiviewService
|
/base/hiviewdfx/hiview/adapter/service/server/include/ |
H A D | hiview_service_ability.h | 49 int32_t Move(const std::string& logType, const std::string& logName, const std::string& dest) override;
|
/base/hiviewdfx/hiview/adapter/service/server/src/ |
H A D | hiview_service_ability.cpp | 197 int32_t HiviewServiceAbility::Move(const std::string& logType, const std::string& logName, const std::string& dest) in Move() function in OHOS::HiviewDFX::HiviewServiceAbility 231 return isMove ? service->Move(sourceFile, fullPath) : service->Copy(sourceFile, fullPath); in CopyOrMoveFile()
|
H A D | hiview_service_ability_stub.cpp | 332 int32_t ret = isMove ? Move(logType, logName, dest) : Copy(logType, logName, dest); in HandleCopyOrMoveRequest()
|
/base/hiviewdfx/hiview/adapter/service/client/src/ |
H A D | hiview_service_ability_proxy.cpp | 78 int32_t HiviewServiceAbilityProxy::Move(const std::string& logType, const std::string& logName, in Move() function in OHOS::HiviewDFX::HiviewServiceAbilityProxy
|