| /foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/include/adaptor/ |
| D | distributed_objectstore_impl.h | 37 uint32_t Get(const std::string &sessionId, DistributedObject **object) override; 38 DistributedObject *CreateObject(const std::string &sessionId) override; 39 DistributedObject *CreateObject(const std::string &sessionId, uint32_t &status) override; 41 uint32_t Watch(DistributedObject *object, std::shared_ptr<ObjectWatcher> watcher) override; 42 uint32_t UnWatch(DistributedObject *object) override; 47 DistributedObject *CacheObject(const std::string &sessionId, FlatObjectStore *flatObjectStore); 50 std::map<DistributedObject *, std::shared_ptr<WatcherProxy>> watchers_; 52 std::vector<DistributedObject *> objects_ {};
|
| D | client_adaptor.h | 26 static sptr<OHOS::DistributedObject::IObjectService> GetObjectService(); 45 class ObjectStoreDataServiceProxy : public IRemoteProxy<OHOS::DistributedObject::IKvStoreDataServi…
|
| /foundation/distributeddatamgr/data_object/interfaces/innerkits/ |
| D | distributed_objectstore.h | 51 virtual DistributedObject *CreateObject(const std::string &sessionId) = 0; 62 virtual DistributedObject *CreateObject(const std::string &sessionId, uint32_t &status) = 0; 72 virtual uint32_t Get(const std::string &sessionId, DistributedObject **object) = 0; 91 …virtual uint32_t Watch(DistributedObject *object, std::shared_ptr<ObjectWatcher> objectWatcher) = … 100 virtual uint32_t UnWatch(DistributedObject *object) = 0;
|
| D | distributed_object.h | 31 class DistributedObject { 33 virtual ~DistributedObject(){}; in ~DistributedObject()
|
| /foundation/distributeddatamgr/data_object/frameworks/jskitsimpl/include/adaptor/ |
| D | js_object_wrapper.h | 28 JSObjectWrapper(DistributedObjectStore *objectStore, DistributedObject *object); 30 DistributedObject *GetObject(); 42 DistributedObject *object_;
|
| D | js_watcher.h | 60 … std::weak_ptr<JSWatcher> watcher, DistributedObjectStore *objectStore, DistributedObject *object); 70 DistributedObject *object_; 89 JSWatcher(const napi_env env, DistributedObjectStore *objectStore, DistributedObject *object);
|
| D | js_distributedobject.h | 26 DistributedObject *object;
|
| /foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/object/ |
| D | object_data_listener.cpp | 23 namespace DistributedObject { namespace 46 DistributedObject::ObjectStoreManager::GetInstance()->NotifyChange(changedData); in OnChange()
|
| D | object_data_listener.h | 22 namespace DistributedObject {
|
| D | object_common.h | 19 namespace DistributedObject {
|
| D | object_asset_loader.h | 24 namespace DistributedObject {
|
| D | object_snapshot.h | 23 namespace DistributedObject {
|
| D | object_asset_machine.h | 23 namespace DistributedObject {
|
| D | object_service_stub.h | 22 namespace OHOS::DistributedObject {
|
| /foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/src/adaptor/ |
| D | client_adaptor.cpp | 29 using KvStoreCode = OHOS::DistributedObject::ObjectStoreService::KvStoreServiceInterfaceCode; 31 sptr<OHOS::DistributedObject::IObjectService> ClientAdaptor::GetObjectService() in GetObjectService() 47 return iface_cast<DistributedObject::IObjectService>(remote); in GetObjectService() 121 : IRemoteProxy<DistributedObject::IKvStoreDataService>(impl) in ObjectStoreDataServiceProxy()
|
| D | distributed_object_store_impl.cpp | 38 DistributedObject *DistributedObjectStoreImpl::CacheObject( in CacheObject() 65 DistributedObject *DistributedObjectStoreImpl::CreateObject(const std::string &sessionId) in CreateObject() 86 DistributedObject *DistributedObjectStoreImpl::CreateObject(const std::string &sessionId, uint32_t … in CreateObject() 125 uint32_t DistributedObjectStoreImpl::Get(const std::string &sessionId, DistributedObject **object) in Get() 139 uint32_t DistributedObjectStoreImpl::Watch(DistributedObject *object, std::shared_ptr<ObjectWatcher… in Watch() 170 uint32_t DistributedObjectStoreImpl::UnWatch(DistributedObject *object) in UnWatch()
|
| D | flat_object_store.cpp | 213 sptr<OHOS::DistributedObject::IObjectService> proxy = ClientAdaptor::GetObjectService(); in BindAssetStore() 420 sptr<OHOS::DistributedObject::IObjectService> proxy = ClientAdaptor::GetObjectService(); in SaveObject() 442 sptr<OHOS::DistributedObject::IObjectService> proxy = ClientAdaptor::GetObjectService(); in RevokeSaveObject() 465 sptr<OHOS::DistributedObject::IObjectService> proxy = ClientAdaptor::GetObjectService(); in ResumeObject() 487 sptr<OHOS::DistributedObject::IObjectService> proxy = ClientAdaptor::GetObjectService(); in SubscribeDataChange() 509 sptr<OHOS::DistributedObject::IObjectService> proxy = ClientAdaptor::GetObjectService(); in UnregisterDataChange() 524 sptr<OHOS::DistributedObject::IObjectService> proxy = ClientAdaptor::GetObjectService(); in DeleteSnapshot()
|
| /foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/test/unittest/src/ |
| D | object_store_test.cpp | 134 DistributedObject *object = objectStore->CreateObject(sessionId); 151 DistributedObject *object = objectStore->CreateObject(sessionId); 168 DistributedObject *object = objectStore->CreateObject(sessionId); 171 DistributedObject *object2 = objectStore->CreateObject(sessionId); 191 DistributedObject *object = objectStore->CreateObject(sessionId, status); 211 DistributedObject *object = objectStore->CreateObject(""); 225 DistributedObject *object = objectStore.CreateObject(sessionId, status); 246 DistributedObject *object = objectStore->CreateObject(sessionId, status); 266 DistributedObject *object = objectStore->CreateObject(sessionId); 269 DistributedObject *Object1 = nullptr; [all …]
|
| /foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/include/ |
| D | distributeddata_object_store_ipc_interface_code.h | 21 namespace OHOS::DistributedObject {
|
| D | iobject_service.h | 25 namespace OHOS::DistributedObject {
|
| D | object_callback.h | 24 namespace DistributedObject {
|
| D | object_callback_stub.h | 23 namespace DistributedObject {
|
| /foundation/distributeddatamgr/data_object/frameworks/jskitsimpl/src/adaptor/ |
| D | js_object_wrapper.cpp | 20 JSObjectWrapper::JSObjectWrapper(DistributedObjectStore *objectStore, DistributedObject *object) in JSObjectWrapper() 35 DistributedObject *JSObjectWrapper::GetObject() in GetObject()
|
| /foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/test/fuzztest/objectstore_fuzzer/ |
| D | objectstore_fuzzer.cpp | 27 static DistributedObject *object_ = nullptr; 46 DistributedObject *object = nullptr; in SetUpTestCase() 268 DistributedObject *object = nullptr; in CreateObjectV9Fuzz() 298 DistributedObject *object = objectStore_->CreateObject(SESSIONID, status); in GetFuzz() 303 DistributedObject *object2 = nullptr; in GetFuzz()
|
| /foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/fuzztest/objectservicestub_fuzzer/ |
| D | objectservicestub_fuzzer.cpp | 26 using namespace OHOS::DistributedObject;
|