Home
last modified time | relevance | path

Searched full:udkey (Results 1 – 25 of 35) sorted by relevance

12

/base/msdp/device_status/interfaces/innerkits/interaction/include/
Ddrag_data.h63 std::string udKey; member
82 return shadowInfos == other.shadowInfos && buffer == other.buffer && udKey == other.udKey &&
/base/msdp/device_status/services/interaction/drag/src/
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()
Ddrag_manager.cpp215 for (const auto &[udKey, recordSize] : dragData.summarys) { in PrintDragData()
216 std::string str = udKey + "-" + std::to_string(recordSize) + ";"; in PrintDragData()
221 …" hasCanceledAnimation:%{public}d, udKey:%{public}s, hasCoordinateCorrected:%{public}d, summarys:%… in PrintDragData()
223 ….displayY, dragData.dragNum, dragData.hasCanceledAnimation, GetAnonyString(dragData.udKey).c_str(), in PrintDragData()
507 int32_t DragManager::GetUdKey(std::string &udKey) const in GetUdKey()
511 if (dragData.udKey.empty()) { in GetUdKey()
512 FI_HILOGE("Target udKey is empty"); in GetUdKey()
515 udKey = dragData.udKey; in GetUdKey()
819 void DragManager::SendDragData(int32_t targetTid, const std::string &udKey) in SendDragData() argument
825 option.key = udKey; in SendDragData()
[all …]
/base/msdp/device_status/frameworks/native/interaction/src/
Dinteraction_manager.cpp157 int32_t InteractionManager::GetUdKey(std::string &udKey) in GetUdKey() argument
159 return INTER_MGR_IMPL.GetUdKey(udKey); in GetUdKey()
315 int32_t InteractionManager::GetUdKey(std::string &udKey) in GetUdKey() argument
317 return DRAG_MANAGER.GetUdKey(udKey); in GetUdKey()
Ddrag_manager_impl.cpp68 int32_t DragManagerImpl::GetUdKey(std::string &udKey) in GetUdKey() argument
71 return DeviceStatusClient::GetInstance().GetUdKey(udKey); in GetUdKey()
Dinteraction_manager_impl.cpp271 int32_t InteractionManagerImpl::GetUdKey(std::string &udKey) in GetUdKey() argument
274 return dragManagerImpl_.GetUdKey(udKey); in GetUdKey()
/base/msdp/device_status/services/interaction/drag/include/
Ddrag_hisysevent.h50 static int32_t WriteSendTokenid(int32_t targetTid, const std::string &udKey);
Ddrag_manager.h76 int32_t GetUdKey(std::string &udKey) const override;
77 void SendDragData(int32_t targetTid, const std::string &udKey);
/base/msdp/device_status/frameworks/native/interaction/include/
Ddrag_manager_impl.h55 int32_t GetUdKey(std::string &udKey);
Dinteraction_manager_impl.h53 int32_t GetUdKey(std::string &udKey);
/base/msdp/device_status/services/communication/client/include/
Ddevicestatus_srv_proxy.h59 virtual int32_t GetUdKey(std::string &udKey) override;
/base/msdp/device_status/services/communication/base/
Di_devicestatus.h54 virtual int32_t GetUdKey(std::string &udKey) = 0;
/base/msdp/device_status/services/communication/service/src/
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/utils/common/src/
Ddrag_data_packer.cpp44 WRITESTRING(data, dragData.udKey, E_DEVICESTATUS_WRITE_PARCEL_ERROR); in Marshalling()
74 READSTRING(data, dragData.udKey, E_DEVICESTATUS_READ_PARCEL_ERROR); in UnMarshalling()
/base/msdp/device_status/interfaces/innerkits/include/
Ddevicestatus_client.h62 int32_t GetUdKey(std::string &udKey);
/base/msdp/device_status/intention/drag/server/src/
Ddrag_server.cpp181 FI_HILOGI("Get udkey, from:%{public}d", context.pid); in GetParam()
388 std::string udKey; in GetUdKey() local
390 int32_t ret = env_->GetDragManager().GetUdKey(udKey); in GetUdKey()
395 GetUdKeyReply udKeyReply { std::move(udKey) }; in GetUdKey()
/base/msdp/device_status/intention/drag/client/include/
Ddrag_client.h49 int32_t GetUdKey(ITunnelClient &tunnel, std::string &udKey);
/base/msdp/device_status/
Dhisysevent.yaml168 UDKEY: {type: STRING, desc: udkey}
/base/msdp/device_status/intention/drag/client/src/
Ddrag_client.cpp240 int32_t DragClient::GetUdKey(ITunnelClient &tunnel, std::string &udKey) in GetUdKey() argument
250 udKey = reply.udKey_; in GetUdKey()
251 FI_HILOGI("UdKey:%{public}s", reply.udKey_.c_str()); in GetUdKey()
/base/msdp/device_status/intention/prototype/include/
Di_drag_manager.h57 virtual int32_t GetUdKey(std::string &udKey) const = 0;
/base/msdp/device_status/intention/frameworks/client/include/
Dintention_manager.h67 int32_t GetUdKey(std::string &udKey);
/base/msdp/device_status/intention/drag/data/src/
Ddrag_params.cpp182 GetUdKeyReply::GetUdKeyReply(std::string &&udKey) in GetUdKeyReply() argument
183 : udKey_(std::move(udKey)) in GetUdKeyReply()
/base/msdp/device_status/services/native/include/
Ddevicestatus_service.h90 int32_t GetUdKey(std::string &udKey) override;
/base/msdp/device_status/frameworks/native/src/
Ddevicestatus_client.cpp294 int32_t DeviceStatusClient::GetUdKey(std::string &udKey) in GetUdKey() argument
298 return devicestatusProxy_->GetUdKey(udKey); in GetUdKey()
/base/msdp/device_status/test/unittest/intention/drag/src/
Ddrag_manager_test.cpp122 dragData.udKey = UD_KEY; in CreateDragData()
545 std::string udKey; variable
546 ret = InteractionManager::GetInstance()->GetUdKey(udKey);
1126 std::string udKey; variable
1127 int32_t ret = InteractionManager::GetInstance()->GetUdKey(udKey);
1335 std::string udKey; variable
1337 GetUdKeyReply udKeyReply { std::move(udKey) };

12