Home
last modified time | relevance | path

Searched refs:GetPredicates (Results 1 – 18 of 18) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/cj/src/
H A Drelational_store_impl_rdbstore.cpp89 auto resultSet = rdbStore_->Query(*(predicates.GetPredicates()), columnsVector); in Query()
101 …auto resultSet = rdbStore_->RemoteQuery(std::string(device), *(predicates.GetPredicates()), column… in RemoteQuery()
111 …*errCode = rdbStore_->UpdateWithConflictResolution(affectedRows, predicates.GetPredicates()->GetTa… in Update()
112 …nativeValuesBucket, predicates.GetPredicates()->GetWhereClause(), predicates.GetPredicates()->GetB… in Update()
120 *errCode = rdbStore_->Delete(deletedRows, *(predicates.GetPredicates())); in Delete()
233 rdbStore_->Sync(option, *(predicates.GetPredicates()), in Sync()
H A Drelational_store_impl_rdbpredicatesproxy.cpp39 std::shared_ptr<NativeRdb::RdbPredicates> RdbPredicatesImpl::GetPredicates() in GetPredicates() function in OHOS::Relational::RdbPredicatesImpl
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/cloud/
H A Dmake_query_event.cpp26 std::shared_ptr<DistributedRdb::PredicatesMemo> MakeQueryEvent::GetPredicates() const in GetPredicates() function in OHOS::DistributedData::MakeQueryEvent
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/cloud/
H A Dmake_query_event.h33 std::shared_ptr<DistributedRdb::PredicatesMemo> GetPredicates() const;
/ohos5.0/base/telephony/telephony_data/sms_mms/src/
H A Dsms_mms_ability.cpp178 NativeRdb::AbsRdbPredicates *absRdbPredicates = GetPredicates(messageUriType, uri); in Query()
214 NativeRdb::AbsRdbPredicates *absRdbPredicates = GetPredicates(messageUriType, uri); in Update()
228 NativeRdb::AbsRdbPredicates *SmsMmsAbility::GetPredicates(MessageUriType messageUriType, const Uri … in GetPredicates() function in OHOS::Telephony::SmsMmsAbility
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/dataability/src/
H A Dnapi_predicates_utils.cpp49 auto absPredicates = dataAbilityPredicatesProxy->GetPredicates(); in CreateRdbPredicates()
H A Dnapi_data_ability_predicates.cpp664 std::shared_ptr<NativeRdb::DataAbilityPredicates> DataAbilityPredicatesProxy::GetPredicates() const in GetPredicates() function in OHOS::DataAbilityJsKit::DataAbilityPredicatesProxy
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/cj/include/
H A Drelational_store_impl_rdbpredicatesproxy.h99 std::shared_ptr<NativeRdb::RdbPredicates> GetPredicates();
/ohos5.0/base/telephony/telephony_data/sms_mms/include/
H A Dsms_mms_ability.h103 NativeRdb::AbsRdbPredicates *GetPredicates(MessageUriType messageUriType, const Uri &uri);
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/dataability/include/
H A Dnapi_data_ability_predicates.h36 std::shared_ptr<NativeRdb::DataAbilityPredicates> GetPredicates() const;
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/rdb/src/
H A Dnapi_rdb_store.cpp319 context->predicatesProxy->GetPredicates() != nullptr, context->SetError(paramError)); in ParsePredicates()
320 context->tableName = context->predicatesProxy->GetPredicates()->GetTableName(); in ParsePredicates()
321 context->rdbPredicates = context->predicatesProxy->GetPredicates(); in ParsePredicates()
845 context->predicatesProxy->GetPredicates() != nullptr); in Count()
846 int errCode = obj->rdbStore_->Count(temp, *(context->predicatesProxy->GetPredicates())); in Count()
1189 int res = obj->rdbStore_->Sync(option, *context->predicatesProxy->GetPredicates(), in Sync()
H A Dnapi_rdb_predicates.cpp873 std::shared_ptr<NativeRdb::RdbPredicates> RdbPredicatesProxy::GetPredicates() const in GetPredicates() function in OHOS::RdbJsKit::RdbPredicatesProxy
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/rdb/include/
H A Dnapi_rdb_predicates.h37 std::shared_ptr<NativeRdb::RdbPredicates> GetPredicates() const;
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/rdb/mock/include/
H A Dnapi_rdb_predicates.h37 std::shared_ptr<NativeRdb::RdbPredicates> GetPredicates() const;
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/include/
H A Dnapi_rdb_predicates.h37 std::shared_ptr<NativeRdb::RdbPredicates> GetPredicates() const;
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/src/
H A Dnapi_rdb_store.cpp405 context->tableName = context->predicatesProxy->GetPredicates()->GetTableName(); in ParsePredicates()
406 context->rdbPredicates = context->predicatesProxy->GetPredicates(); in ParsePredicates()
1411 auto predicates = *context->predicatesProxy->GetPredicates(); in Sync()
1462 context->rdbPredicates = context->predicatesProxy->GetPredicates(); in GetCloudSyncInput()
H A Dnapi_rdb_predicates.cpp831 std::shared_ptr<NativeRdb::RdbPredicates> RdbPredicatesProxy::GetPredicates() const in GetPredicates() function in OHOS::RelationalStoreJsKit::RdbPredicatesProxy
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/
H A Drdb_service_impl.cpp131 auto predicate = evt.GetPredicates(); in RdbServiceImpl()