Home
last modified time | relevance | path

Searched refs:dbConnCount_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/src/
H A Ddocument_store_manager.cpp50 std::map<std::string, int> DocumentStoreManager::dbConnCount_; member in DocumentDB::DocumentStoreManager
81 auto it = dbConnCount_.find(dbRealPath); in GetDocumentStore()
82 bool isFirstOpen = (it == dbConnCount_.end() || it->second == 0); in GetDocumentStore()
99 dbConnCount_[dbRealPath]--; in GetDocumentStore()
103 dbConnCount_[dbRealPath] = 1; in GetDocumentStore()
105 dbConnCount_[dbRealPath]++; in GetDocumentStore()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/include/
H A Ddocument_store_manager.h36 static std::map<std::string, int> dbConnCount_; variable