Home
last modified time | relevance | path

Searched refs:AddQueryTemplate (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/consumer/controller/service/src/
H A Dpersistent_data_controller.cpp23 int PersistentDataController::AddQueryTemplate(const std::string &uri, int64_t subscriberId, Templa… in AddQueryTemplate() function in OHOS::DataShare::PersistentDataController
30 return proxy->AddQueryTemplate(uri, subscriberId, tpl); in AddQueryTemplate()
/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/consumer/controller/service/include/
H A Dpersistent_data_controller.h30 int AddQueryTemplate(const std::string &uri, int64_t subscriberId, Template &tpl);
/ohos5.0/foundation/distributeddatamgr/data_share/test/native/unittest/datashareproxy_test/
H A Dproxydatas_with_permission_test.cpp173 auto result = helper->AddQueryTemplate(DATA_SHARE_PROXY_URI, SUBSCRIBER_ID, tpl);
192 auto result = helper->AddQueryTemplate(errorUri, SUBSCRIBER_ID, tpl);
282 auto result = helper->AddQueryTemplate(DATA_SHARE_PROXY_URI, SUBSCRIBER_ID, tpl);
/ohos5.0/foundation/distributeddatamgr/data_share/test/native/unittest/mediadatashare_test/src/
H A Dslientswitch_test.cpp493 auto result = helper->AddQueryTemplate(DATA_SHARE_PROXY_URI, SUBSCRIBER_ID, tpl);
511 auto result = helper->AddQueryTemplate(DATA_SHARE_PROXY_URI, SUBSCRIBER_ID, tpl);
527 auto result = helper->AddQueryTemplate(DATA_SHARE_PROXY_URI, SUBSCRIBER_ID, tpl);
/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/common/include/
H A Didata_share_service.h57 virtual int AddQueryTemplate(const std::string &uri, int64_t subscriberId, Template &tpl) = 0;
/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/proxy/include/
H A Ddata_share_service_proxy.h48 int AddQueryTemplate(const std::string &uri, int64_t subscriberId, Template &tpl) override;
/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/consumer/include/
H A Ddatashare_helper_impl.h71 int AddQueryTemplate(const string &uri, int64_t subscriberId, Template &tpl) override;
/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/consumer/src/
H A Ddatashare_helper_impl.cpp311 int DataShareHelperImpl::AddQueryTemplate(const std::string &uri, int64_t subscriberId, Template &t… in AddQueryTemplate() function in OHOS::DataShare::DataShareHelperImpl
321 return persistentDataCtl->AddQueryTemplate(uri, subscriberId, tpl); in AddQueryTemplate()
/ohos5.0/foundation/distributeddatamgr/data_share/interfaces/inner_api/consumer/include/
H A Ddatashare_helper.h327 virtual int AddQueryTemplate(const std::string &uri, int64_t subscriberId, Template &tpl) = 0;
/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/native/proxy/src/
H A Ddata_share_service_proxy.cpp196 int DataShareServiceProxy::AddQueryTemplate(const std::string &uri, int64_t subscriberId, Template … in AddQueryTemplate() function in OHOS::DataShare::DataShareServiceProxy
/ohos5.0/foundation/distributeddatamgr/data_share/frameworks/js/napi/dataShare/src/
H A Dnapi_datashare_helper.cpp648 auto res = helper->AddQueryTemplate(uri, atoll(subscriberId.c_str()), tpl); in Napi_AddTemplate()