Home
last modified time | relevance | path

Searched refs:ChangeNotification (Results 1 - 25 of 55) sorted by relevance

123

/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/src/
H A Dchange_notification.cpp16 #define LOG_TAG "ChangeNotification"
24 ChangeNotification::ChangeNotification(std::vector<Entry> &&insertEntries, std::vector<Entry> &&updateEntries, in ChangeNotification() function in OHOS::DistributedKv::ChangeNotification
30 ChangeNotification::~ChangeNotification() in ~ChangeNotification()
33 const std::vector<Entry> &ChangeNotification::GetInsertEntries() const in GetInsertEntries()
38 const std::vector<Entry> &ChangeNotification::GetUpdateEntries() const in GetUpdateEntries()
43 const std::vector<Entry> &ChangeNotification::GetDeleteEntries() const in GetDeleteEntries()
48 const std::string &ChangeNotification::GetDeviceId() const in GetDeviceId()
53 bool ChangeNotification
[all...]
H A Dikvstore_observer.cpp48 void KvStoreObserverProxy::OnChange(const ChangeNotification &changeNotification) in OnChange()
61 ZLOGE("Write ChangeNotification buffer size to parcel failed."); in OnChange()
67 ZLOGW("Write ChangeNotification to parcel failed."); in OnChange()
119 ChangeNotification notification({}, {}, {}, "", false); in OnRemoteRequest()
137 ChangeNotification change(std::move(inserts), std::move(updates), std::move(deletes), deviceId, in OnRemoteRequest()
H A Dkvstore_observer_client.h33 void OnChange(const ChangeNotification &changeNotification) override;
H A Dkvstore_observer_client.cpp34 void KvStoreObserverClient::OnChange(const ChangeNotification &changeNotification) in OnChange()
/foundation/distributeddatamgr/kv_store/interfaces/innerkits/distributeddata/include/
H A Dchange_notification.h24 class ChangeNotification final {
27 * @brief Constructor of ChangeNotification.
34 API_EXPORT ChangeNotification(std::vector<Entry> &&insertEntries, std::vector<Entry> &&updateEntries,
40 API_EXPORT ~ChangeNotification();
H A Dkvstore_observer.h50 API_EXPORT virtual void OnChange(const ChangeNotification &changeNotification) {} in OnChange()
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/include/
H A Dikvstore_observer.h38 virtual void OnChange(const ChangeNotification &changeNotification) = 0;
55 void OnChange(const ChangeNotification &changeNotification) override;
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/include/
H A Dkv_types_util.h30 using ChangeNotification = DistributedKv::ChangeNotification;
69 API_EXPORT bool Marshalling(const ChangeNotification &notification, MessageParcel &parcel);
71 API_EXPORT bool Unmarshalling(ChangeNotification &output, MessageParcel &parcel);
H A Dobserver_bridge.h42 void OnChange(const ChangeNotification &data) override __attribute__((no_sanitize("cfi")));
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/dbadapter/src/
H A Dmock_db_change_listener.cpp27 void MockDBChangeListener::OnChange(const DistributedKv::ChangeNotification &changeNotification) in OnChange()
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/
H A Dobserver_bridge.cpp88 ChangeNotification notice(std::move(inserted), std::move(updated), std::move(deleted), deviceId, false); in OnChange()
97 void ObserverBridge::ObserverClient::OnChange(const ChangeNotification &data) in OnChange()
106 ChangeNotification notice(std::move(inserted), std::move(updated), std::move(deleted), deviceId, false); in OnChange()
H A Dkv_types_util.cpp84 bool Marshalling(const ChangeNotification &notification, MessageParcel &parcel) in Marshalling()
91 bool Unmarshalling(ChangeNotification &output, MessageParcel &parcel) in Unmarshalling()
101 output = ChangeNotification(std::move(inserts), std::move(updates), std::move(deletes), deviceId, isClear); in Unmarshalling()
/foundation/ability/dmsfwk/services/dtbschedmgr/include/mission/
H A Ddistributed_data_change_listener.h29 void OnChange(const DistributedKv::ChangeNotification &changeNotification) override;
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/dbadapter/include/
H A Dmock_db_change_listener.h29 void OnChange(const DistributedKv::ChangeNotification &changeNotification) override;
/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributeddata/include/
H A Djs_util.h44 using ChangeNotification = OHOS::DistributedKv::ChangeNotification;
118 /* napi_value <-> ChangeNotification */
119 static napi_status GetValue(napi_env env, napi_value in, ChangeNotification& out, bool hasSchema);
120 static napi_status SetValue(napi_env env, const ChangeNotification& in, napi_value& out, bool hasSchema);
/foundation/deviceprofile/device_info_manager/old/services/core/include/subscribemanager/
H A Dprofile_change_handler.h36 void OnChange(const DistributedKv::ChangeNotification& changeNotification) override;
/foundation/deviceprofile/device_info_manager/services/core/include/deviceprofilemanager/listener/
H A Dkv_data_change_listener.h33 void OnChange(const DistributedKv::ChangeNotification& changeNotification) override;
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/test/unittest/
H A Dtypes_util_test.cpp91 HWTEST_F(TypesUtilTest, ChangeNotification, TestSize.Level1) in HWTEST_F()
105 ChangeNotification changeIn(std::move(inserts), std::move(updates), std::move(deleteds), std::string(), false); in HWTEST_F()
108 ChangeNotification changeOut({}, {}, {}, "", false); in HWTEST_F()
/foundation/ability/dmsfwk/services/dtbschedmgr/test/unittest/mission/
H A Ddistributed_mission_info_test.cpp160 DistributedKv::ChangeNotification changeNotification(std::move(insertEntries), std::move(updateEntries), in HWTEST_F()
174 DistributedKv::ChangeNotification changeNotification1(std::move(insertEntries), std::move(updateEntries), in HWTEST_F()
210 DistributedKv::ChangeNotification changeNotification(std::move(insertEntries), std::move(updateEntries), in HWTEST_F()
461 DistributedKv::ChangeNotification changeNotification(std::move(insertEntries), in HWTEST_F()
/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributedkvstore/include/
H A Djs_util.h68 using ChangeNotification = OHOS::DistributedKv::ChangeNotification;
146 /* napi_value <-> ChangeNotification */
147 static StatusMsg GetValue(napi_env env, napi_value in, ChangeNotification& out, bool hasSchema);
148 static StatusMsg SetValue(napi_env env, const ChangeNotification& in, napi_value& out, bool hasSchema);
/foundation/distributeddatamgr/kv_store/test/fuzztest/typesutil_fuzzer/
H A Dtypesutil_fuzzer.cpp113 ChangeNotification changeIn(std::move(inserts), std::move(updates), std::move(deleteds), strBase, boolBase); in ChangeNotificationFuzz()
117 ChangeNotification changeOut(std::move(empty), {}, {}, "", !boolBase); in ChangeNotificationFuzz()
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/include/resourcemanager/
H A Dversion_info_manager.h54 void OnChange(const DistributedKv::ChangeNotification &changeNotification) override;
/foundation/distributeddatamgr/kv_store/frameworks/cj/include/
H A Ddistributed_kv_store_impl.h328 const std::function<void(DistributedKv::ChangeNotification)>& callbackRef);
330 void OnChange(const DistributedKv::ChangeNotification& notification) override;
332 std::function<void(DistributedKv::ChangeNotification)> m_callbackRef;
/foundation/ability/dmsfwk/services/dtbschedmgr/src/mission/
H A Ddistributed_data_change_listener.cpp62 void DistributedDataChangeListener::OnChange(const ChangeNotification &changeNotification) in OnChange()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/
H A Dkvdb_watcher.cpp64 ChangeNotification change(std::move(inserts), std::move(updates), std::move(deletes), {}, false); in OnChange()

Completed in 8 milliseconds

123