Home
last modified time | relevance | path

Searched refs:udKey (Results 1 - 25 of 34) sorted by relevance

12

/base/msdp/device_status/interfaces/innerkits/interaction/include/
H A Ddrag_data.h63 std::string udKey; member
79 return shadowInfos == other.shadowInfos && buffer == other.buffer && udKey == other.udKey && in operator ==()
H A Dinteraction_manager.h207 int32_t GetUdKey(std::string &udKey);
/base/msdp/device_status/frameworks/native/interaction/src/
H A Dinteraction_manager.cpp136 int32_t InteractionManager::GetUdKey(std::string &udKey) in GetUdKey() argument
138 return INTER_MGR_IMPL.GetUdKey(udKey); in GetUdKey()
284 int32_t InteractionManager::GetUdKey(std::string &udKey) in GetUdKey() argument
286 return DRAG_MANAGER.GetUdKey(udKey); in GetUdKey()
H A Dinteraction_manager_impl.cpp271 int32_t InteractionManagerImpl::GetUdKey(std::string &udKey) in GetUdKey() argument
274 return dragManagerImpl_.GetUdKey(udKey); in GetUdKey()
H A Ddrag_manager_impl.cpp68 int32_t DragManagerImpl::GetUdKey(std::string &udKey) in GetUdKey() argument
71 return DeviceStatusClient::GetInstance().GetUdKey(udKey); in GetUdKey()
/base/msdp/device_status/services/interaction/drag/include/
H A Ddrag_hisysevent.h50 static int32_t WriteSendTokenid(int32_t targetTid, const std::string &udKey);
H A Ddrag_manager.h72 int32_t GetUdKey(std::string &udKey) const override;
73 void SendDragData(int32_t targetTid, const std::string &udKey);
/base/msdp/device_status/frameworks/native/interaction/include/
H A Ddrag_manager_impl.h55 int32_t GetUdKey(std::string &udKey);
H A Dinteraction_manager_impl.h53 int32_t GetUdKey(std::string &udKey);
/base/msdp/device_status/services/interaction/drag/src/
H A Ddrag_manager.cpp208 for (const auto &[udKey, recordSize] : dragData.summarys) { in PrintDragData()
209 std::string str = udKey + "-" + std::to_string(recordSize) + ";"; in PrintDragData()
214 " hasCanceledAnimation:%{public}d, udKey:%{public}s, hasCoordinateCorrected:%{public}d, summarys:%{public}s," in PrintDragData()
216 dragData.displayY, dragData.dragNum, dragData.hasCanceledAnimation, GetAnonyString(dragData.udKey).c_str(), in PrintDragData()
442 int32_t DragManager::GetUdKey(std::string &udKey) const in GetUdKey()
446 if (dragData.udKey.empty()) { in GetUdKey()
447 FI_HILOGE("Target udKey is empty"); in GetUdKey()
450 udKey = dragData.udKey; in GetUdKey()
651 void DragManager::SendDragData(int32_t targetTid, const std::string &udKey) in SendDragData() argument
790 std::string udKey; Dump() local
[all...]
H A Ddrag_hisysevent.cpp126 int32_t DragDFX::WriteSendTokenid(int32_t targetTid, const std::string &udKey) in WriteSendTokenid() argument
128 return WriteModel(DragType::SEND_TOKENID, "targetTid", targetTid, "udKey", udKey); in WriteSendTokenid()
/base/msdp/device_status/services/communication/base/
H A Di_devicestatus.h54 virtual int32_t GetUdKey(std::string &udKey) = 0;
/base/msdp/device_status/interfaces/innerkits/include/
H A Ddevicestatus_client.h62 int32_t GetUdKey(std::string &udKey);
/base/msdp/device_status/utils/common/src/
H A Ddrag_data_packer.cpp37 WRITESTRING(data, dragData.udKey, E_DEVICESTATUS_WRITE_PARCEL_ERROR); in Marshalling()
64 READSTRING(data, dragData.udKey, E_DEVICESTATUS_READ_PARCEL_ERROR); in UnMarshalling()
/base/msdp/device_status/intention/prototype/include/
H A Di_drag_manager.h55 virtual int32_t GetUdKey(std::string &udKey) const = 0;
/base/msdp/device_status/intention/drag/client/include/
H A Ddrag_client.h49 int32_t GetUdKey(ITunnelClient &tunnel, std::string &udKey);
/base/msdp/device_status/intention/frameworks/client/include/
H A Dintention_manager.h64 int32_t GetUdKey(std::string &udKey);
/base/msdp/device_status/services/communication/client/include/
H A Ddevicestatus_srv_proxy.h59 virtual int32_t GetUdKey(std::string &udKey) override;
/base/msdp/device_status/intention/drag/server/src/
H A Ddrag_server.cpp357 std::string udKey; in GetUdKey() local
359 int32_t ret = env_->GetDragManager().GetUdKey(udKey); in GetUdKey()
364 GetUdKeyReply udKeyReply { std::move(udKey) }; in GetUdKey()
/base/msdp/device_status/frameworks/native/src/
H A Ddevicestatus_client.cpp294 int32_t DeviceStatusClient::GetUdKey(std::string &udKey) in GetUdKey() argument
298 return devicestatusProxy_->GetUdKey(udKey); in GetUdKey()
/base/msdp/device_status/intention/drag/data/src/
H A Ddrag_params.cpp182 GetUdKeyReply::GetUdKeyReply(std::string &&udKey) in GetUdKeyReply() argument
183 : udKey_(std::move(udKey)) in GetUdKeyReply()
/base/msdp/device_status/intention/frameworks/client/src/
H A Dintention_manager.cpp316 int32_t IntentionManager::GetUdKey(std::string &udKey) in GetUdKey() argument
319 return drag_.GetUdKey(*tunnel_, udKey); in GetUdKey()
/base/msdp/device_status/test/unittest/intention/drag/src/
H A Ddrag_manager_test.cpp120 dragData.udKey = UD_KEY; in CreateDragData()
543 std::string udKey; in HWTEST_F() local
544 ret = InteractionManager::GetInstance()->GetUdKey(udKey); in HWTEST_F()
1124 std::string udKey; in HWTEST_F() local
1125 int32_t ret = InteractionManager::GetInstance()->GetUdKey(udKey); in HWTEST_F()
1333 std::string udKey; in HWTEST_F() local
1335 GetUdKeyReply udKeyReply { std::move(udKey) }; in HWTEST_F()
/base/msdp/device_status/services/communication/service/src/
H A Ddevicestatus_srv_stub.cpp613 std::string udKey; in GetUdKeyStub() local
614 int32_t ret = GetUdKey(udKey); in GetUdKeyStub()
616 FI_HILOGE("Get udKey failed, ret:%{public}d", ret); in GetUdKeyStub()
618 WRITESTRING(reply, udKey, IPC_STUB_WRITE_PARCEL_ERR); in GetUdKeyStub()
619 FI_HILOGD("Target udKey:%{public}s", GetAnonyString(udKey).c_str()); in GetUdKeyStub()
/base/msdp/device_status/intention/drag/client/src/
H A Ddrag_client.cpp240 int32_t DragClient::GetUdKey(ITunnelClient &tunnel, std::string &udKey) in GetUdKey() argument
250 udKey = reply.udKey_; in GetUdKey()

Completed in 18 milliseconds

12