Home
last modified time | relevance | path

Searched refs:QuerySharingResource (Results 1 – 12 of 12) sorted by relevance

/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
Drdb_service.h70 virtual std::pair<int32_t, std::shared_ptr<ResultSet>> QuerySharingResource(
Drdb_store.h342 virtual std::pair<int32_t, std::shared_ptr<ResultSet>> QuerySharingResource( in QuerySharingResource() function
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
Drdb_service_proxy.h74 std::pair<int32_t, std::shared_ptr<ResultSet>> QuerySharingResource(const RdbSyncerParam &param,
Drdb_store_impl.h145 std::pair<int32_t, std::shared_ptr<ResultSet>> QuerySharingResource(
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/include/
Dnapi_rdb_store.h79 static napi_value QuerySharingResource(napi_env env, napi_callback_info info);
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/
Drdb_service_impl.h83 std::pair<int32_t, std::shared_ptr<ResultSet>> QuerySharingResource(const RdbSyncerParam& param,
Drdb_service_stub.cpp296 auto [status, resultSet] = QuerySharingResource(param, predicates, columns); in OnRemoteQuerySharingResource()
Drdb_service_impl.cpp614 std::pair<int32_t, std::shared_ptr<RdbService::ResultSet>> RdbServiceImpl::QuerySharingResource( in QuerySharingResource() function in OHOS::DistributedRdb::RdbServiceImpl
/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
Drdb_store_impl_test.cpp651 auto ret = store->QuerySharingResource(predicates, {});
687 auto [status, resultSet] = store->QuerySharingResource(predicates, { "id", "data_key" });
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
Drdb_service_proxy.cpp346 …::pair<int32_t, std::shared_ptr<RdbServiceProxy::ResultSet>> RdbServiceProxy::QuerySharingResource( in QuerySharingResource() function in OHOS::DistributedRdb::RdbServiceProxy
Drdb_store_impl.cpp685 std::pair<int32_t, std::shared_ptr<ResultSet>> RdbStoreImpl::QuerySharingResource( in QuerySharingResource() function in OHOS::NativeRdb::RdbStoreImpl
693 service->QuerySharingResource(syncerParam_, predicates.GetDistributedPredicates(), columns); in QuerySharingResource()
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/
Dnapi_rdb_store.cpp194 DECLARE_NAPI_FUNCTION("querySharingResource", QuerySharingResource), in Init()
1501 napi_value RdbStoreProxy::QuerySharingResource(napi_env env, napi_callback_info info) in QuerySharingResource() function in OHOS::RelationalStoreJsKit::RdbStoreProxy
1521 obj->rdbStore_->QuerySharingResource(*(context->rdbPredicates), context->columns); in QuerySharingResource()