Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Drdb_service.h74 virtual std::pair<int32_t, std::shared_ptr<ResultSet>> QuerySharingResource(
H A Drdb_store.h390 …virtual std::pair<int32_t, std::shared_ptr<ResultSet>> QuerySharingResource(const AbsRdbPredicates…
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Drdb_service_proxy.h79 std::pair<int32_t, std::shared_ptr<ResultSet>> QuerySharingResource(const RdbSyncerParam &param,
H A Drdb_store_impl.h93 …std::pair<int32_t, std::shared_ptr<ResultSet>> QuerySharingResource(const AbsRdbPredicates &predic…
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/include/
H A Dnapi_rdb_store.h85 static napi_value QuerySharingResource(napi_env env, napi_callback_info info);
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/
H A Drdb_service_impl.h83 std::pair<int32_t, std::shared_ptr<ResultSet>> QuerySharingResource(const RdbSyncerParam& param,
H A Drdb_service_stub.cpp332 auto [status, resultSet] = QuerySharingResource(param, predicates, columns); in OnRemoteQuerySharingResource()
H A Drdb_service_impl.cpp690 std::pair<int32_t, std::shared_ptr<RdbService::ResultSet>> RdbServiceImpl::QuerySharingResource( in QuerySharingResource() function in OHOS::DistributedRdb::RdbServiceImpl
/ohos5.0/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
H A Drdb_store_impl_test.cpp664 auto ret = store->QuerySharingResource(predicates, {});
700 auto [status, resultSet] = store->QuerySharingResource(predicates, { "id", "data_key" });
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Drdb_store.cpp282 std::pair<int32_t, std::shared_ptr<ResultSet>> RdbStore::QuerySharingResource(const AbsRdbPredicate… in QuerySharingResource() function in OHOS::NativeRdb::RdbStore
H A Drdb_service_proxy.cpp363 …::pair<int32_t, std::shared_ptr<RdbServiceProxy::ResultSet>> RdbServiceProxy::QuerySharingResource( in QuerySharingResource() function in OHOS::DistributedRdb::RdbServiceProxy
H A Drdb_store_impl.cpp234 std::pair<int32_t, std::shared_ptr<ResultSet>> RdbStoreImpl::QuerySharingResource(const AbsRdbPredi… in QuerySharingResource() function in OHOS::NativeRdb::RdbStoreImpl
245 service->QuerySharingResource(syncerParam_, predicates.GetDistributedPredicates(), columns); in QuerySharingResource()
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/
H A Dnapi_rdb_store.cpp180 DECLARE_NAPI_FUNCTION("querySharingResource", QuerySharingResource), in GetDescriptors()
1815 napi_value RdbStoreProxy::QuerySharingResource(napi_env env, napi_callback_info info) in QuerySharingResource() function in OHOS::RelationalStoreJsKit::RdbStoreProxy
1834 context->rdbStore->QuerySharingResource(*(context->rdbPredicates), context->columns); in QuerySharingResource()