Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_nb_publish_test.cpp138 EXPECT_EQ(g_kvNbDelegatePtr->PublishLocal(KEY_2, true, true, nullptr), NOT_FOUND);
155 EXPECT_EQ(g_kvNbDelegatePtr->PublishLocal(KEY_2, true, false, nullptr), NOT_FOUND);
171 EXPECT_EQ(g_kvNbDelegatePtr->PublishLocal(KEY_2, false, true, nullptr), NOT_FOUND);
187 EXPECT_EQ(g_kvNbDelegatePtr->PublishLocal(KEY_2, false, false, nullptr), NOT_FOUND);
235 EXPECT_EQ(g_kvNbDelegatePtr->PublishLocal(KEY_1, false, true, nullptr), OK);
312 EXPECT_EQ(g_kvNbDelegatePtr->PublishLocal(KEY_1, true, true, nullptr), OK);
389 EXPECT_EQ(g_kvNbDelegatePtr->PublishLocal(KEY_1, false, true, nullptr), OK);
467 EXPECT_EQ(g_kvNbDelegatePtr->PublishLocal(KEY_1, true, false, nullptr), STALE);
624 EXPECT_EQ(g_kvNbDelegatePtr->PublishLocal(KEY_1, true, true, ConflictCallback), OK);
720 EXPECT_EQ(g_kvNbDelegatePtr->PublishLocal(KEY_1, true, true, ConflictCallback), OK);
[all …]
H A Ddistributeddb_interfaces_nb_delegate_test.cpp3078 EXPECT_EQ(kvStoreImpl->PublishLocal(key, true, true, nullptr), DB_ERROR);
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/mock/
H A Dkv_store_nb_delegate_mock.h54 DBStatus PublishLocal(const Key &key, bool deleteLocal, bool updateTimestamp,
H A Dkv_store_nb_delegate_mock.cpp94 DBStatus KvStoreNbDelegateMock::PublishLocal(const Key &key, bool deleteLocal, bool updateTimestamp, in PublishLocal() function in DistributedDB::KvStoreNbDelegateMock
H A Ddb_store_mock.h64 DBStatus PublishLocal(const Key &key, bool deleteLocal, bool updateTimestamp,
H A Ddb_store_mock.cpp98 DBStatus DBStoreMock::PublishLocal(const Key &key, bool deleteLocal, bool updateTimestamp, in PublishLocal() function in OHOS::DistributedData::DBStoreMock
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_single_ver_natural_store_connection.h160 int PublishLocal(const Key &key, bool deleteLocal, bool updateTimestamp,
H A Dsqlite_single_ver_natural_store_connection.cpp1398 int SQLiteSingleVerNaturalStoreConnection::PublishLocal(const Key &key, bool deleteLocal, bool upda… in PublishLocal() function in DistributedDB::SQLiteSingleVerNaturalStoreConnection
1672 return PublishLocal(info->key, info->deleteLocal, info->updateTimestamp, info->action); in PragmaPublish()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/
H A Dkv_store_nb_delegate.h126 DB_API virtual DBStatus PublishLocal(const Key &key, bool deleteLocal, bool updateTimestamp,
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/
H A Dkv_store_nb_delegate_impl.h70 DBStatus PublishLocal(const Key &key, bool deleteLocal, bool updateTimestamp,
H A Dkv_store_nb_delegate_impl.cpp293 DBStatus KvStoreNbDelegateImpl::PublishLocal(const Key &key, bool deleteLocal, bool updateTimestamp, in PublishLocal() function in DistributedDB::KvStoreNbDelegateImpl
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/fuzztest/nbdelegate_fuzzer/
H A Dnbdelegate_fuzzer.cpp256 kvNbDelegatePtr->PublishLocal(keys[0], deleteLocal, updateTimestamp, nullptr); in FuzzCURD()