Home
last modified time | relevance | path

Searched refs:ConcurrentMap (Results 1 - 25 of 83) sorted by relevance

1234

/foundation/distributeddatamgr/udmf/adapter/framework/innerkitsimpl/client/
H A Dconcurrent_map.h21 class ConcurrentMap { class
23 ConcurrentMap() = default;
24 ~ConcurrentMap() = default;
/foundation/systemabilitymgr/samgr/services/samgr/native/include/
H A Dconcurrent_map.h24 template <typename K, typename V> class ConcurrentMap { class
26 ConcurrentMap() {} in ConcurrentMap() function in OHOS::ConcurrentMap
28 ~ConcurrentMap() {} in ~ConcurrentMap()
30 ConcurrentMap(const ConcurrentMap &rhs) in ConcurrentMap() function in OHOS::ConcurrentMap
35 ConcurrentMap &operator = (const ConcurrentMap &rhs) in operator =()
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/distributeddatafwk/src/
H A Dkvdb_notifier_client.h52 ConcurrentMap<uint64_t, std::shared_ptr<KvStoreSyncCallback>> syncCallbackInfo_;
53 ConcurrentMap<std::string, std::pair<bool, bool>> remotes_;
54 ConcurrentMap<uintptr_t, std::shared_ptr<KvStoreObserver>> switchObservers_;
55 ConcurrentMap<uint64_t, AsyncDetail> cloudSyncCallbacks_;
/foundation/ability/ability_runtime/services/dataobsmgr/include/
H A Dconcurrent_map.h23 class ConcurrentMap { class
37 ConcurrentMap() = default;
38 ~ConcurrentMap() in ~ConcurrentMap()
43 ConcurrentMap(const ConcurrentMap &other) in ConcurrentMap() function in OHOS::ConcurrentMap
48 ConcurrentMap &operator=(const ConcurrentMap &other) noexcept
59 ConcurrentMap(ConcurrentMap &&other) noexcept
64 ConcurrentMap
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/common/
H A Dconcurrent_map.h23 class ConcurrentMap { class
37 ConcurrentMap() = default;
38 ~ConcurrentMap() in ~ConcurrentMap()
43 ConcurrentMap(const ConcurrentMap &other) in ConcurrentMap() function in OHOS::ConcurrentMap
48 ConcurrentMap &operator=(const ConcurrentMap &other) noexcept
59 ConcurrentMap(ConcurrentMap &&other) noexcept
64 ConcurrentMap
[all...]
/foundation/distributeddatamgr/pasteboard/framework/framework/include/common/
H A Dconcurrent_map.h23 class ConcurrentMap { class
32 ConcurrentMap() = default;
33 ~ConcurrentMap() in ~ConcurrentMap()
38 ConcurrentMap(const ConcurrentMap &other) in ConcurrentMap() function in OHOS::ConcurrentMap
43 ConcurrentMap &operator=(const ConcurrentMap &other) noexcept
54 ConcurrentMap(ConcurrentMap &&other) noexcept
59 ConcurrentMap
[all...]
/foundation/distributeddatamgr/relational_store/rdbmock/frameworks/native/rdb/
H A Dconcurrent_map.h23 class ConcurrentMap { class
37 ConcurrentMap() = default;
38 ~ConcurrentMap() in ~ConcurrentMap()
43 ConcurrentMap(const ConcurrentMap &other) in ConcurrentMap() function in OHOS::ConcurrentMap
48 ConcurrentMap &operator=(const ConcurrentMap &other) noexcept
59 ConcurrentMap(ConcurrentMap &&other) noexcept
64 ConcurrentMap
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/dump/
H A Ddump_manager.h54 API_EXPORT ConcurrentMap<std::string, DumpManager::Config> LoadConfig();
60 ConcurrentMap<std::string, Config> factory_;
61 ConcurrentMap<std::string, std::string> indexTable_;
62 ConcurrentMap<std::string, std::map<uintptr_t, Handler>> handlers_;
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Drdb_sql_statistic.h27 class ConcurrentMap;
49 static ConcurrentMap<SqlObserver *, std::shared_ptr<SqlObserver>> observers_;
50 static ConcurrentMap<uint64_t, std::shared_ptr<SqlExecInfo>> execInfos_;
/foundation/distributeddatamgr/preferences/frameworks/native/include/
H A Dconcurrent_map.h24 class ConcurrentMap { class
38 ConcurrentMap() = default;
39 ~ConcurrentMap() in ~ConcurrentMap()
44 ConcurrentMap(const ConcurrentMap &other) in ConcurrentMap() function in OHOS::ConcurrentMap
49 ConcurrentMap(std::map<_Key, _Tp> &&other) noexcept
54 ConcurrentMap &operator=(std::map<_Key, _Tp> &&other) noexcept
64 ConcurrentMap &operator=(const ConcurrentMap &other) noexcept
75 ConcurrentMap(ConcurrentMa
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/object/
H A Dobject_asset_loader.h67 ConcurrentMap<uint32_t, TransferTask> tasks_;
68 ConcurrentMap<std::string, std::string> downloaded_;
69 ConcurrentMap<std::string, std::string> downloading_;
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/mock/
H A Ddb_store_mock.h120 DBStatus Get(ConcurrentMap<Key, Value> &store, const Key &key, Value &value) const;
121 DBStatus GetEntries(ConcurrentMap<Key, Value> &store, const Key &keyPrefix, std::vector<Entry> &entries) const;
122 DBStatus PutBatch(ConcurrentMap<Key, Value> &store, const std::vector<Entry> &entries);
123 DBStatus DeleteBatch(ConcurrentMap<Key, Value> &store, const std::vector<Key> &keys);
124 mutable ConcurrentMap<Key, Value> entries_;
125 mutable ConcurrentMap<Key, Value> localEntries_;
126 mutable ConcurrentMap<KvStoreObserver *, std::set<Key>> observers_;
/foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/kvdb/include/
H A Dstore_factory.h41 ConcurrentMap<std::string, std::shared_ptr<DBManager>> dbManagers_;
42 ConcurrentMap<std::string, std::map<std::string, std::shared_ptr<SingleStoreImpl>>> stores_;
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/feature/
H A Dfeature_system.h66 const ConcurrentMap<std::string, std::shared_ptr<StaticActs>> &GetStaticActs();
76 ConcurrentMap<std::string, std::pair<Creator, int32_t>> creators_;
77 ConcurrentMap<std::string, std::shared_ptr<StaticActs>> staticActs_;
/foundation/distributeddatamgr/kv_store/frameworks/common/test/
H A Dconcurrent_map_test.cpp16 #define LOG_TAG "ConcurrentMap"
22 template<typename _Key, typename _Tp> using ConcurrentMap = OHOS::ConcurrentMap<_Key, _Tp>;
45 ConcurrentMap<std::string, TestValue> values_;
/foundation/ability/ability_runtime/interfaces/inner_api/dataobs_manager/include/
H A Ddataobs_mgr_client.h139 ConcurrentMap<sptr<IDataAbilityObserver>, std::list<Uri>> observers_;
146 ConcurrentMap<sptr<IDataAbilityObserver>, std::list<Param>> observerExts_;
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/communication/
H A Dconnect_manager.h60 static ConcurrentMap<std::string, SessionCloseListener> sessionCloseListener_;
61 static ConcurrentMap<std::string, SessionOpenListener> sessionOpenListener_;
/foundation/distributeddatamgr/data_object/frameworks/jskitsimpl/include/adaptor/
H A Djs_distributedobjectstore.h40 static bool AddCallback(napi_env env, ConcurrentMap<std::string, std::list<napi_ref>> &callbacks,
42 static bool DelCallback(napi_env env, ConcurrentMap<std::string, std::list<napi_ref>> &callbacks,
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/communicator/src/
H A Dsoftbus_adapter.h104 ConcurrentMap<std::string, const AppDataChangeListener *> dataChangeListeners_{};
105 ConcurrentMap<std::string, std::vector<std::shared_ptr<SoftBusClient>>> connects_;
112 ConcurrentMap<int32_t, ServerSocketInfo> peerSocketInfos_;
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/include/communicator/
H A Ddevice_manager_adapter.h111 ConcurrentMap<const AppDeviceChangeListener *, const AppDeviceChangeListener *> observers_ {};
116 ConcurrentMap<std::string, std::string> syncTask_ {};
123 ConcurrentMap<std::string, std::pair<DeviceState, DeviceInfo>> readyDevices_;
/foundation/distributeddatamgr/pasteboard/services/core/include/
H A Dpasteboard_service.h182 ConcurrentMap<uint32_t, std::shared_ptr<BlockObject<bool>>> getDataBlocks_;
280 ConcurrentMap<int32_t, std::shared_ptr<PasteData>> clips_;
281 ConcurrentMap<int32_t, std::pair<sptr<IPasteboardEntryGetter>, sptr<EntryGetterDeathRecipient>>> entryGetters_;
282 ConcurrentMap<int32_t, std::pair<sptr<IPasteboardDelayGetter>, sptr<DelayGetterDeathRecipient>>> delayGetters_;
283 ConcurrentMap<int32_t, uint64_t> copyTime_;
302 ConcurrentMap<std::string, ConcurrentMap<std::string, int32_t>> p2pMap_;
303 ConcurrentMap<uint32_t, ShareOption> globalShareOptions_;
341 ConcurrentMap<pid_t, sptr<PasteboardDeathRecipient>> clients_;
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/data_share/common/
H A Dapp_connect_manager.h33 static ConcurrentMap<std::string, BlockData<bool> *> blockCache_;
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include/store/
H A Dauto_cache.h97 ConcurrentMap<uint32_t, std::map<std::string, Delegate>> stores_;
98 ConcurrentMap<uint32_t, std::set<std::string>> disables_;
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/include/
H A Dstore_factory.h55 ConcurrentMap<std::string, std::shared_ptr<DBManager>> dbManagers_;
56 ConcurrentMap<std::string, std::map<std::string, std::shared_ptr<SingleStoreImpl>>> stores_;
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/communication/
H A Dconnect_manager.cpp25 ConcurrentMap<std::string, ConnectManager::SessionCloseListener> ConnectManager::sessionCloseListener_;
26 ConcurrentMap<std::string, ConnectManager::SessionOpenListener> ConnectManager::sessionOpenListener_;

Completed in 10 milliseconds

1234