Home
last modified time | relevance | path

Searched refs:pasteId (Results 1 - 12 of 12) sorted by relevance

/foundation/distributeddatamgr/pasteboard/test/fuzztest/pasteboardservice_fuzzer/
H A Dpasteboardservice_fuzzer.cpp166 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 Di_pasteboard_service.h48 virtual void PasteStart(const std::string &pasteId) = 0;
49 virtual void PasteComplete(const std::string &deviceId, const std::string &pasteId) = 0;
H A Dpasteboard_service.h126 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 Dpasteboard_service_proxy.h50 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 Dpasteboard_service_stub.cpp150 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 Dpasteboard_service_proxy.cpp189 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 Dpasteboard_client.h403 void PasteStart(const std::string &pasteId);
411 void PasteComplete(const std::string &deviceId, const std::string &pasteId);
H A Dpaste_data.h134 void SetPasteId(const std::string &pasteId);
/foundation/distributeddatamgr/pasteboard/framework/innerkits/src/
H A Dpasteboard_client.cpp705 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 Dpaste_data.cpp816 void PasteData::SetPasteId(const std::string &pasteId) in SetPasteId() argument
818 pasteId_ = pasteId; in SetPasteId()
/foundation/distributeddatamgr/pasteboard/services/core/src/
H A Dpasteboard_service.cpp624 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 Dnapi_pastedata.cpp1068 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()

Completed in 22 milliseconds