/foundation/resourceschedule/resource_schedule_service/ressched/test/unittest/src/ |
H A D | notifier_mgr_test.cpp | 62 * @tc.name: notifier manager TestNotifierSystemloadListener 001 70 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); in HWTEST_F() local 71 EXPECT_TRUE(notifier != nullptr); in HWTEST_F() 72 NotifierMgr::GetInstance().RegisterNotifier(IPCSkeleton::GetCallingPid(), notifier); in HWTEST_F() local 80 * @tc.name: notifier manager TestNotifierSystemloadListener 002 88 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); in HWTEST_F() local 89 EXPECT_TRUE(notifier != nullptr); in HWTEST_F() 90 NotifierMgr::GetInstance().RegisterNotifier(IPCSkeleton::GetCallingPid(), notifier); in HWTEST_F() local 97 * @tc.name: notifier manager TestNotifierSystemloadListener 003 105 sptr<IRemoteObject> notifier in HWTEST_F() local 107 NotifierMgr::GetInstance().RegisterNotifier(IPCSkeleton::GetCallingPid(), notifier); HWTEST_F() local 123 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); HWTEST_F() local 125 NotifierMgr::GetInstance().RegisterNotifier(IPCSkeleton::GetCallingPid(), notifier); HWTEST_F() local 142 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); HWTEST_F() local 144 NotifierMgr::GetInstance().RegisterNotifier(IPCSkeleton::GetCallingPid(), notifier); HWTEST_F() local 161 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); HWTEST_F() local 183 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); HWTEST_F() local 203 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); HWTEST_F() local 221 sptr<IRemoteObject> notifier; HWTEST_F() local 236 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); HWTEST_F() local 252 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); HWTEST_F() local 327 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); HWTEST_F() local 331 NotifierMgr::GetInstance().RegisterNotifier(IPCSkeleton::GetCallingPid(), notifier); HWTEST_F() local 362 sptr<IRemoteObject> notifier; HWTEST_F() local 376 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); HWTEST_F() local 390 sptr<IRemoteObject> notifier = nullptr; HWTEST_F() local 418 sptr<IRemoteObject> notifier = new (std::nothrow) TestNotifierSystemloadListener(); HWTEST_F() local [all...] |
H A D | res_sched_client_test.cpp | 221 * @tc.desc: Register systemload notifier
228 sptr<ResSchedSystemloadNotifierClient> notifier =
in HWTEST_F() local 230 EXPECT_TRUE(notifier != nullptr);
in HWTEST_F() 231 ResSchedClient::GetInstance().RegisterSystemloadNotifier(notifier);
in HWTEST_F() 232 ResSchedClient::GetInstance().RegisterSystemloadNotifier(notifier);
in HWTEST_F() 236 ResSchedClient::GetInstance().UnRegisterSystemloadNotifier(notifier);
in HWTEST_F() 241 * @tc.desc: UnRegister systemload notifier
248 sptr<ResSchedSystemloadNotifierClient> notifier =
in HWTEST_F() local 250 EXPECT_TRUE(notifier != nullptr);
in HWTEST_F() 251 ResSchedClient::GetInstance().RegisterSystemloadNotifier(notifier);
in HWTEST_F() 335 sptr<ResSchedSystemloadNotifierClient> notifier = HWTEST_F() local 355 sptr<ResSchedSystemloadNotifierClient> notifier = HWTEST_F() local 372 sptr<ResSchedSystemloadNotifierClient> notifier = HWTEST_F() local [all...] |
H A D | res_sched_service_test.cpp | 241 sptr<IRemoteObject> notifier = new (std::nothrow) TestResSchedSystemloadListener();
in HWTEST_F() local 242 EXPECT_TRUE(notifier != nullptr);
in HWTEST_F() 244 resSchedService_->RegisterSystemloadNotifier(notifier);
in HWTEST_F() 265 sptr<IRemoteObject> notifier = new (std::nothrow) TestResSchedSystemloadListener();
in HWTEST_F() local 266 EXPECT_TRUE(notifier != nullptr);
in HWTEST_F() 268 resSchedService_->RegisterSystemloadNotifier(notifier);
in HWTEST_F() 287 sptr<IRemoteObject> notifier = new (std::nothrow) TestResSchedSystemloadListener();
in HWTEST_F() local 288 EXPECT_TRUE(notifier != nullptr);
in HWTEST_F() 290 resSchedService_->RegisterSystemloadNotifier(notifier);
in HWTEST_F() 311 sptr<IRemoteObject> notifier in HWTEST_F() local 337 sptr<IRemoteObject> notifier = new (std::nothrow) TestResSchedSystemloadListener(); HWTEST_F() local 354 sptr<IRemoteObject> notifier = new (std::nothrow) TestResSchedSystemloadListener(); HWTEST_F() local 372 sptr<IRemoteObject> notifier = new (std::nothrow) TestResSchedSystemloadListener(); HWTEST_F() local 390 sptr<IRemoteObject> notifier = new (std::nothrow) TestResSchedSystemloadListener(); HWTEST_F() local 407 sptr<IRemoteObject> notifier = new (std::nothrow) TestResSchedSystemloadListener(); HWTEST_F() local 426 sptr<IRemoteObject> notifier = new (std::nothrow) TestResSchedSystemloadListener(); HWTEST_F() local [all...] |
/foundation/resourceschedule/resource_schedule_service/ressched/services/resschedmgr/resschedfwk/src/ |
H A D | notifier_mgr.cpp | 70 new (std::nothrow) ResSchedCommonDeathRecipient([](const sptr<IRemoteObject>& notifier) { in Init() 71 NotifierMgr::GetInstance().OnRemoteNotifierDied(notifier); in Init() 91 void NotifierMgr::RegisterNotifier(int32_t pid, const sptr<IRemoteObject>& notifier) in RegisterNotifier() argument 94 if (notifier == nullptr) { in RegisterNotifier() 95 RESSCHED_LOGE("RegisterNotifier notifier is null"); in RegisterNotifier() 106 info.notifier = notifier; in RegisterNotifier() 109 notifier->AddDeathRecipient(notifierDeathRecipient_); in RegisterNotifier() 119 iter->second.notifier->RemoveDeathRecipient(notifierDeathRecipient_); in UnRegisterNotifier() 124 void NotifierMgr::OnRemoteNotifierDied(const sptr<IRemoteObject>& notifier) in OnRemoteNotifierDied() argument 192 RemoveNotifierLock(const sptr<IRemoteObject>& notifier) RemoveNotifierLock() argument [all...] |
/foundation/ai/ai_engine/services/server/server_executor/include/ |
H A D | task.h | 30 SimpleEventNotifier<IResponse> *notifier; member 35 Task() : handler(nullptr), request(nullptr), notifier(nullptr) {} in Task() 42 * @param notifier Notifier info. 44 Task(IHandler *handler, IRequest *request, SimpleEventNotifier<IResponse> *notifier) in Task() 45 : handler(handler), request(request), notifier(notifier) in Task()
|
H A D | sync_msg_handler.h | 56 * @param [in, out] notifier Semaphore. 59 int SendRequest(IRequest *request, SimpleEventNotifier<IResponse> ¬ifier); 65 * @param [in, out] notifier Semaphore. 69 int ReceiveResponse(int timeOut, SimpleEventNotifier<IResponse> ¬ifier, IResponse *&response);
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/ |
H A D | time_tick_monitor.cpp | 69 NotificationChain *notifier; in StopTimeTickMonitor() local 72 notifier = timeChangedNotifier_; in StopTimeTickMonitor() 75 if (notifier != nullptr) { in StopTimeTickMonitor() 76 notifier->UnRegisterEventType(TIME_CHANGE_EVENT); in StopTimeTickMonitor() 77 RefObject::KillAndDecObjRef(notifier); in StopTimeTickMonitor() 136 NotificationChain *notifier = nullptr; in TimeTick() local 139 notifier = timeChangedNotifier_; in TimeTick() 140 RefObject::IncObjRef(notifier); in TimeTick() 142 int ret = RuntimeContext::GetInstance()->ScheduleTask([notifier, changedOffset]() { in TimeTick() 143 if (notifier in TimeTick() [all...] |
H A D | auto_launch.cpp | 162 int AutoLaunch::EnableKvStoreAutoLaunch(const KvDBProperties &properties, AutoLaunchNotifier notifier, in EnableKvStoreAutoLaunch() argument 171 AutoLaunchItem autoLaunchItem { ptr, notifier, option.observer, option.conflictType, option.notifier }; in EnableKvStoreAutoLaunch() 352 autoLaunchItem.notifier = autoLaunchItemMap_[identifier][userId].notifier; in ObserverFunc() 366 if (!autoLaunchItem.isWriteOpenNotified && autoLaunchItem.notifier != nullptr) { in ObserverFunc() 371 AutoLaunchNotifier notifier = autoLaunchItem.notifier; in ObserverFunc() local 372 int retCode = RuntimeContext::GetInstance()->ScheduleTask([notifier, userId, appId, storeId] { in ObserverFunc() 374 notifier(userI in ObserverFunc() 837 AutoLaunchNotifier notifier; ExtObserverFunc() local 935 const KvStoreNbConflictNotifier ¬ifier = autoLaunchItem.conflictNotifier; SetConflictNotifier() local 1121 DatabaseLifeCycleNotifier notifier; RegisterLifeCycleCallback() local 1439 NotifyAutoLaunch(const std::string &userId, AutoLaunchItem &autoLaunchItem, AutoLaunchNotifier ¬ifier) NotifyAutoLaunch() argument [all...] |
/foundation/deviceprofile/device_info_manager/old/services/core/test/unittest/ |
H A D | subscribe_manager_test.cpp | 220 sptr<IRemoteObject> notifier = in HWTEST_F() local 224 int32_t ret = SubscribeManager::GetInstance().SubscribeProfileEvents(subscribeInfos, notifier, failedEvents); in HWTEST_F() 237 sptr<IRemoteObject> notifier = in HWTEST_F() local 243 int32_t ret = SubscribeManager::GetInstance().SubscribeProfileEvents(subscribeInfos, notifier, failedEvents); in HWTEST_F() 256 sptr<IRemoteObject> notifier = in HWTEST_F() local 262 int32_t ret = SubscribeManager::GetInstance().UnsubscribeProfileEvents(profileEvents, notifier, failedEvents); in HWTEST_F() 275 sptr<IRemoteObject> notifier = in HWTEST_F() local 281 SubscribeManager::GetInstance().TryAddNotifierLocked(notifier, subProfileEvents); in HWTEST_F() 284 SubscribeManager::GetInstance().TryAddNotifierLocked(notifier, subProfileEvents); in HWTEST_F() 299 sptr<IRemoteObject> notifier in HWTEST_F() local 319 sptr<IRemoteObject> notifier = HWTEST_F() local 342 sptr<IRemoteObject> notifier = HWTEST_F() local 377 wptr<IRemoteObject> notifier = HWTEST_F() local [all...] |
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/ |
H A D | rdb_watcher.cpp | 31 auto notifier = GetNotifier(); in OnChange() local 32 if (notifier == nullptr) { in OnChange() 44 notifier->OnChange(rdbOrigin, primaryFields, std::move(values)); in OnChange() 59 void RdbWatcher::SetNotifier(sptr<RdbNotifierProxy> notifier) in SetNotifier() argument 62 if (notifier_ == notifier) { in SetNotifier() 65 notifier_ = notifier; in SetNotifier()
|
/foundation/CastEngine/castengine_wifi_display/services/mediachannel/ |
H A D | buffer_dispatcher.cpp | 638 auto notifier = GetNotifierByReceiverId(receiverId); in IsRecevierExist() local 639 if (notifier == nullptr) { in IsRecevierExist() 671 DataNotifier::Ptr notifier = std::make_shared<DataNotifier>(); in AttachReceiver() local 672 notifier->SetListenDispatcher(shared_from_this()); in AttachReceiver() 673 notifier->SetNotifyReceiver(receiver); in AttachReceiver() 683 notifier->SetReadIndex(static_cast<uint32_t>(log2(usableRef))); in AttachReceiver() 685 receiver->GetReceiverId(), notifier->GetReadIndex(), usableRef, readRefFlag_); in AttachReceiver() 687 notifiers_.emplace(receiver->GetReceiverId(), notifier); in AttachReceiver() 690 notifier->audioIndex = INVALID_INDEX; in AttachReceiver() 691 notifier in AttachReceiver() 750 auto notifier = GetNotifierByReceiverPtr(receiver); DetachReceiver() local 767 DetachReceiver(uint32_t receiverId, DataNotifier::Ptr notifier) DetachReceiver() argument 789 auto notifier = it->second; ReleaseAllReceiver() local 860 auto notifier = GetNotifierByReceiverId(receiverId); ReadBufferData() local 1247 auto notifier = GetNotifierByReceiverId(receiverId); UpdateReceiverReadIndex() local 1309 auto notifier = GetNotifierByReceiverId(receiverId); FindNextIndex() local 1500 auto notifier = GetNotifierByReceiverId(receiverId); NotifyReadReady() local [all...] |
/foundation/ai/ai_engine/services/server/server_executor/source/ |
H A D | sync_msg_handler.cpp | 57 if (task.notifier != nullptr) { in Process() 58 (task.notifier)->AddToBack(response); in Process() 76 int SyncMsgHandler::SendRequest(IRequest *request, SimpleEventNotifier<IResponse> ¬ifier) in SendRequest() argument 88 Task task(this, request, ¬ifier); in SendRequest() 96 int SyncMsgHandler::ReceiveResponse(int timeOut, SimpleEventNotifier<IResponse> ¬ifier, in ReceiveResponse() argument 99 bool notifierCode = notifier.GetFromFront(timeOut, response); in ReceiveResponse()
|
/foundation/ability/dmsfwk/services/dtbabilitymgr/src/continuation_manager/ |
H A D | notifier_info.cpp | 29 void NotifierInfo::SetNotifier(const std::string& cbType, const sptr<IRemoteObject>& notifier)
in SetNotifier() argument 31 notifierMap_[cbType] = notifier;
in SetNotifier() 42 bool NotifierInfo::QueryNotifier(const sptr<IRemoteObject>& notifier) const
in QueryNotifier() 45 if (iter->second == notifier) {
in QueryNotifier()
|
/foundation/resourceschedule/resource_schedule_service/ressched/services/resschedmgr/resschedfwk/include/ |
H A D | notifier_mgr.h | 35 sptr<IRemoteObject> notifier = nullptr; member 43 void RegisterNotifier(int32_t pid, const sptr<IRemoteObject>& notifier); 45 void OnRemoteNotifierDied(const sptr<IRemoteObject>& notifier); 53 void RemoveNotifierLock(const sptr<IRemoteObject>& notifier);
|
/foundation/arkui/ace_engine/test/unittest/core/common/storage/ |
H A D | storage_test.cpp | 91 auto notifier = [](const std::string& onlineStatus) { return; };
in HWTEST_F() local 94 RefPtr<Storage> distributedStorage = StorageProxy::GetInstance()->GetStorage(testSessionId, notifier, taskExecutor);
in HWTEST_F() 134 auto notifier = [](const std::string& onlineStatus) { return; };
in HWTEST_F() local 137 RefPtr<Storage> distributedStorage = StorageProxy::GetInstance()->GetStorage(testSessionId, notifier, taskExecutor);
in HWTEST_F()
|
/foundation/ability/dmsfwk/services/dtbabilitymgr/include/ |
H A D | distributed_ability_manager_service.h | 44 int32_t token, const std::string& cbType, const sptr<IRemoteObject>& notifier) override; 51 void ProcessNotifierDied(const sptr<IRemoteObject>& notifier); 66 bool QueryTokenByNotifier(const sptr<IRemoteObject>& notifier, int32_t& token); 67 bool HandleDeviceConnect(const sptr<IRemoteObject>& notifier, 69 bool HandleDeviceDisconnect(const sptr<IRemoteObject>& notifier, 76 void HandleNotifierDied(const sptr<IRemoteObject>& notifier);
|
/foundation/ability/dmsfwk/services/dtbabilitymgr/test/unittest/ |
H A D | distributed_ability_manager_service_test.cpp | 277 * @tc.steps: step2. test Unregister when notifier is not registered. in HWTEST_F() 290 * @tc.steps: step3. test Unregister when notifier is registered. in HWTEST_F() 366 sptr<DeviceSelectionNotifierTest> notifier(new DeviceSelectionNotifierTest()); in HWTEST_F() 367 ret = dtbabilitymgrService_->RegisterDeviceSelectionCallback(token, EVENT_CONNECT, notifier); in HWTEST_F() 369 ret = dtbabilitymgrService_->RegisterDeviceSelectionCallback(token, EVENT_CONNECT, notifier); in HWTEST_F() 396 sptr<DeviceSelectionNotifierTest> notifier(new DeviceSelectionNotifierTest()); in HWTEST_F() 397 ret = dtbabilitymgrService_->RegisterDeviceSelectionCallback(token, EVENT_CONNECT, notifier); in HWTEST_F() 399 ret = dtbabilitymgrService_->RegisterDeviceSelectionCallback(token, EVENT_DISCONNECT, notifier); in HWTEST_F() 427 sptr<DeviceSelectionNotifierTest> notifier(new DeviceSelectionNotifierTest()); in HWTEST_F() 432 ret = dtbabilitymgrService_->RegisterDeviceSelectionCallback(token, EVENT_CONNECT, notifier); in HWTEST_F() [all...] |
/foundation/ability/dmsfwk/services/dtbabilitymgr/src/ |
H A D | distributed_ability_manager_service.cpp | 213 int32_t token, const std::string& cbType, const sptr<IRemoteObject>& notifier) in RegisterDeviceSelectionCallback() 234 iter->second->SetNotifier(cbType, notifier); in RegisterDeviceSelectionCallback() 237 notifierInfo->SetNotifier(cbType, notifier); in RegisterDeviceSelectionCallback() 239 notifier->AddDeathRecipient(notifierDeathRecipient_); in RegisterDeviceSelectionCallback() 451 auto notifier = callbackMap_[token]->GetNotifier(EVENT_CONNECT); in OnDeviceConnect() local 452 if (!HandleDeviceConnect(notifier, continuationResults)) { in OnDeviceConnect() 471 auto notifier = callbackMap_[token]->GetNotifier(EVENT_DISCONNECT); in OnDeviceDisconnect() local 472 if (!HandleDeviceDisconnect(notifier, continuationResults)) { in OnDeviceDisconnect() 583 bool DistributedAbilityManagerService::HandleDeviceConnect(const sptr<IRemoteObject>& notifier, in HandleDeviceConnect() argument 590 if (notifier in HandleDeviceConnect() 212 RegisterDeviceSelectionCallback( int32_t token, const std::string& cbType, const sptr<IRemoteObject>& notifier) RegisterDeviceSelectionCallback() argument 603 HandleDeviceDisconnect(const sptr<IRemoteObject>& notifier, const std::vector<ContinuationResult>& continuationResults) HandleDeviceDisconnect() argument 713 QueryTokenByNotifier(const sptr<IRemoteObject>& notifier, int32_t& token) QueryTokenByNotifier() argument 728 ProcessNotifierDied(const sptr<IRemoteObject>& notifier) ProcessNotifierDied() argument 737 HandleNotifierDied(const sptr<IRemoteObject>& notifier) HandleNotifierDied() argument [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/src/ |
H A D | distributeddb_nb_db_damage_test.cpp | 86 auto notifier = bind(&KvStoreNbCorruptInfo::CorruptCallBack, &corruptInfo, in HWTEST_F() local 88 g_manager->SetKvStoreCorruptionHandler(notifier); in HWTEST_F() 142 auto notifier = bind(&KvStoreNbCorruptInfo::CorruptCallBack, &corruptInfo, in HWTEST_F() local 144 g_manager->SetKvStoreCorruptionHandler(notifier); in HWTEST_F() 197 auto notifier = bind(&KvStoreNbCorruptInfo::CorruptCallBack, &corruptInfo, in HWTEST_F() local 199 g_manager->SetKvStoreCorruptionHandler(notifier); in HWTEST_F()
|
/foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/src/adaptor/ |
H A D | distributed_object_store_impl.cpp | 193 uint32_t DistributedObjectStoreImpl::SetStatusNotifier(std::shared_ptr<StatusNotifier> notifier) in SetStatusNotifier() argument 199 std::shared_ptr<StatusNotifierProxy> watcherProxy = std::make_shared<StatusNotifierProxy>(notifier); in SetStatusNotifier() 293 if (notifier != nullptr) { in OnChanged() 294 notifier->OnChanged(sessionId, networkId, onlineStatus); in OnChanged() 298 StatusNotifierProxy::StatusNotifierProxy(const std::shared_ptr<StatusNotifier> ¬ifier) : notifier(notifier) in StatusNotifierProxy() argument 305 notifier = nullptr; in ~StatusNotifierProxy()
|
/foundation/deviceprofile/device_info_manager/old/interfaces/innerkits/core/src/ |
H A D | distributed_device_profile_client.cpp | 202 sptr<IRemoteObject> notifier; in SubscribeProfileEvents() local 205 notifier = iter->second.notifier; in SubscribeProfileEvents() 207 notifier = sptr<ProfileEventNotifierStub>( in SubscribeProfileEvents() 218 int32_t errCode = dps->SubscribeProfileEvents(subscribeInfos, notifier, failedEvents); in SubscribeProfileEvents() 229 SubscribeRecord record {subscribeInfos, notifier, subProfileEvents}; in SubscribeProfileEvents() 261 sptr<IRemoteObject> notifier = iter->second.notifier; in UnsubscribeProfileEvents() local 270 int32_t errCode = dps->UnsubscribeProfileEvents(profileEvents, notifier, failedEvents); in UnsubscribeProfileEvents() 294 sptr<IRemoteObject> notifier in SyncDeviceProfile() local [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/ |
H A D | distributeddb_auto_launch_test.cpp | 214 option.notifier = nullptr; in HWTEST_F() 269 auto notifier = [&cvMutex, &cv, &finished, &statusMap] (const std::string &userId, const std::string &appId, in HWTEST_F() local 271 LOGD("int AutoLaunch002 notifier status:%d", status); in HWTEST_F() 275 LOGD("int AutoLaunch002 notifier statusMap.size():%zu", statusMap.size()); in HWTEST_F() 288 option.notifier = nullptr; in HWTEST_F() 290 EXPECT_TRUE(RuntimeContext::GetInstance()->EnableKvStoreAutoLaunch(g_propA, notifier, option) == E_OK); in HWTEST_F() 291 EXPECT_TRUE(RuntimeContext::GetInstance()->EnableKvStoreAutoLaunch(g_propB, notifier, option) == E_OK); in HWTEST_F() 302 * @tc.expected: step3. notifier WRITE_OPENED in HWTEST_F() 318 * @tc.expected: step4. notifier WRITE_CLOSED in HWTEST_F() 346 auto notifier in HWTEST_F() local 490 auto notifier = [&cvMutex, &cv, &finished, &statusMap] (const std::string &userId, const std::string &appId, HWTEST_F() local 557 auto notifier = [] (const std::string &userId, const std::string &appId, HWTEST_F() local 945 auto notifier = [] (const std::string &userId, const std::string &appId, HWTEST_F() local [all...] |
/foundation/ability/dmsfwk/services/dtbabilitymgr/include/continuation_manager/ |
H A D | notifier_info.h | 39 void SetNotifier(const std::string& cbType, const sptr<IRemoteObject>& notifier);
41 bool QueryNotifier(const sptr<IRemoteObject>& notifier) const;
|
/foundation/arkui/ace_engine/frameworks/core/common/storage/ |
H A D | storage_proxy.cpp | 48 std::function<void(const std::string&)>&& notifier, const RefPtr<TaskExecutor>& taskExecutor) const in GetStorage() 51 return distributedDelegate_->GetStorage(sessionId, std::move(notifier), taskExecutor); in GetStorage() 47 GetStorage(const std::string& sessionId, std::function<void(const std::string&)>&& notifier, const RefPtr<TaskExecutor>& taskExecutor) const GetStorage() argument
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/include/ |
H A D | auto_launch_export.h | 35 KvStoreNbConflictNotifier notifier; member 53 AutoLaunchNotifier notifier; member
|