/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/src/ |
H A D | change_notification.cpp | 16 #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 D | ikvstore_observer.cpp | 48 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 D | kvstore_observer_client.h | 33 void OnChange(const ChangeNotification &changeNotification) override;
|
H A D | kvstore_observer_client.cpp | 34 void KvStoreObserverClient::OnChange(const ChangeNotification &changeNotification) in OnChange()
|
/foundation/distributeddatamgr/kv_store/interfaces/innerkits/distributeddata/include/ |
H A D | change_notification.h | 24 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 D | kvstore_observer.h | 50 API_EXPORT virtual void OnChange(const ChangeNotification &changeNotification) {} in OnChange()
|
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/include/ |
H A D | ikvstore_observer.h | 38 virtual void OnChange(const ChangeNotification &changeNotification) = 0; 55 void OnChange(const ChangeNotification &changeNotification) override;
|
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/include/ |
H A D | kv_types_util.h | 30 using ChangeNotification = DistributedKv::ChangeNotification; 69 API_EXPORT bool Marshalling(const ChangeNotification ¬ification, MessageParcel &parcel); 71 API_EXPORT bool Unmarshalling(ChangeNotification &output, MessageParcel &parcel);
|
H A D | observer_bridge.h | 42 void OnChange(const ChangeNotification &data) override __attribute__((no_sanitize("cfi")));
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/dbadapter/src/ |
H A D | mock_db_change_listener.cpp | 27 void MockDBChangeListener::OnChange(const DistributedKv::ChangeNotification &changeNotification) in OnChange()
|
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/ |
H A D | observer_bridge.cpp | 88 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 D | kv_types_util.cpp | 84 bool Marshalling(const ChangeNotification ¬ification, 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 D | distributed_data_change_listener.h | 29 void OnChange(const DistributedKv::ChangeNotification &changeNotification) override;
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/dbadapter/include/ |
H A D | mock_db_change_listener.h | 29 void OnChange(const DistributedKv::ChangeNotification &changeNotification) override;
|
/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributeddata/include/ |
H A D | js_util.h | 44 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 D | profile_change_handler.h | 36 void OnChange(const DistributedKv::ChangeNotification& changeNotification) override;
|
/foundation/deviceprofile/device_info_manager/services/core/include/deviceprofilemanager/listener/ |
H A D | kv_data_change_listener.h | 33 void OnChange(const DistributedKv::ChangeNotification& changeNotification) override;
|
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/test/unittest/ |
H A D | types_util_test.cpp | 91 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 D | distributed_mission_info_test.cpp | 160 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 D | js_util.h | 68 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 D | typesutil_fuzzer.cpp | 113 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 D | version_info_manager.h | 54 void OnChange(const DistributedKv::ChangeNotification &changeNotification) override;
|
/foundation/distributeddatamgr/kv_store/frameworks/cj/include/ |
H A D | distributed_kv_store_impl.h | 328 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 D | distributed_data_change_listener.cpp | 62 void DistributedDataChangeListener::OnChange(const ChangeNotification &changeNotification) in OnChange()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/ |
H A D | kvdb_watcher.cpp | 64 ChangeNotification change(std::move(inserts), std::move(updates), std::move(deletes), {}, false); in OnChange()
|