/foundation/distributeddatamgr/pasteboard/test/fuzztest/pasteboardservice_fuzzer/ |
H A D | pasteboardservice_fuzzer.cpp | 166 void PasteStart(const std::string &pasteId) override 168 (void)pasteId; variable 171 void PasteComplete(const std::string &deviceId, const std::string &pasteId) override 174 (void)pasteId; variable
|
/foundation/distributeddatamgr/pasteboard/services/core/include/ |
H A D | i_pasteboard_service.h | 48 virtual void PasteStart(const std::string &pasteId) = 0; 49 virtual void PasteComplete(const std::string &deviceId, const std::string &pasteId) = 0;
|
H A D | pasteboard_service.h | 126 virtual void PasteStart(const std::string &pasteId) override; 127 virtual void PasteComplete(const std::string &deviceId, const std::string &pasteId) override; 244 void EstablishP2PLink(const std::string &networkId, const std::string &pasteId);
|
/foundation/distributeddatamgr/pasteboard/services/zidl/include/ |
H A D | pasteboard_service_proxy.h | 50 virtual void PasteStart(const std::string &pasteId) override; 51 virtual void PasteComplete(const std::string &deviceId, const std::string &pasteId) override;
|
/foundation/distributeddatamgr/pasteboard/services/zidl/src/ |
H A D | pasteboard_service_stub.cpp | 150 std::string pasteId = data.ReadString(); in OnGetPasteData() local 152 pasteData.SetPasteId(pasteId); in OnGetPasteData() 496 std::string pasteId = data.ReadString(); in OnPasteStart() local 497 PasteStart(pasteId); in OnPasteStart() 504 std::string pasteId = data.ReadString(); in OnPasteComplete() local 505 PasteComplete(deviceId, pasteId); in OnPasteComplete()
|
H A D | pasteboard_service_proxy.cpp | 189 PASTEBOARD_HILOGE(PASTEBOARD_MODULE_CLIENT, "Failed to write pasteId"); in GetPasteData() 532 void PasteboardServiceProxy::PasteStart(const std::string &pasteId) in PasteStart() argument 541 if (!data.WriteString(pasteId)) { in PasteStart() 542 PASTEBOARD_HILOGE(PASTEBOARD_MODULE_CLIENT, "Failed to write pasteId"); in PasteStart() 551 void PasteboardServiceProxy::PasteComplete(const std::string &deviceId, const std::string &pasteId) in PasteComplete() argument 564 if (!data.WriteString(pasteId)) { in PasteComplete() 565 PASTEBOARD_HILOGE(PASTEBOARD_MODULE_CLIENT, "Failed to write pasteId"); in PasteComplete()
|
/foundation/distributeddatamgr/pasteboard/framework/innerkits/include/ |
H A D | pasteboard_client.h | 403 void PasteStart(const std::string &pasteId); 411 void PasteComplete(const std::string &deviceId, const std::string &pasteId);
|
H A D | paste_data.h | 134 void SetPasteId(const std::string &pasteId);
|
/foundation/distributeddatamgr/pasteboard/framework/innerkits/src/ |
H A D | pasteboard_client.cpp | 705 void PasteboardClient::PasteStart(const std::string &pasteId) in PasteStart() argument 708 RadarReporter::DFX_SUCCESS, RadarReporter::CONCURRENT_ID, pasteId); in PasteStart() 713 proxyService->PasteStart(pasteId); in PasteStart() 716 void PasteboardClient::PasteComplete(const std::string &deviceId, const std::string &pasteId) in PasteComplete() argument 722 proxyService->PasteComplete(deviceId, pasteId); in PasteComplete()
|
H A D | paste_data.cpp | 816 void PasteData::SetPasteId(const std::string &pasteId) in SetPasteId() argument 818 pasteId_ = pasteId; in SetPasteId()
|
/foundation/distributeddatamgr/pasteboard/services/core/src/ |
H A D | pasteboard_service.cpp | 624 std::string pasteId = data.GetPasteId(); in GetData() local 637 RADAR_REPORT(DFX_GET_PASTEBOARD, DFX_GET_DATA_INFO, DFX_SUCCESS, CONCURRENT_ID, pasteId, GET_DATA_APP, in GetData() 648 data.SetPasteId(pasteId); in GetData() 806 std::string pasteId = data.GetPasteId(); in GetLocalData() local 823 RADAR_REPORT(DFX_GET_PASTEBOARD, DFX_CHECK_GET_DELAY_PASTE, DFX_SUCCESS, CONCURRENT_ID, pasteId); in GetLocalData() 920 void PasteboardService::EstablishP2PLink(const std::string &networkId, const std::string &pasteId) in EstablishP2PLink() argument 924 p2pMap_.Compute(networkId, [pasteId, callPid](const auto &key, auto &value) { in EstablishP2PLink() 925 value.Compute(pasteId, [callPid](const auto &key, auto &value) { in EstablishP2PLink() 932 FFRTTask task = [this, networkId, pasteId] { in EstablishP2PLink() 933 PasteComplete(networkId, pasteId); in EstablishP2PLink() 988 PasteStart(const std::string &pasteId) PasteStart() argument 995 PasteComplete(const std::string &deviceId, const std::string &pasteId) PasteComplete() argument [all...] |
/foundation/distributeddatamgr/pasteboard/interfaces/kits/napi/src/ |
H A D | napi_pastedata.cpp | 1068 std::string pasteId = obj->value_->GetPasteId(); in PasteStart() local 1069 PasteboardClient::GetInstance()->PasteStart(pasteId); in PasteStart() 1086 std::string pasteId = obj->value_->GetPasteId(); in PasteComplete() local 1087 PasteboardClient::GetInstance()->PasteComplete(deviceId, pasteId); in PasteComplete()
|