/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/kv/ |
H A D | kvdb_utils.cpp | 25 void KvDBUtils::GetStoreDirectory(std::string &directory, const std::string &identifierName) in GetStoreDirectory() argument 30 directory += identifierName; in GetStoreDirectory()
|
H A D | kvdb_manager.cpp | 84 std::string identifierName = DBCommon::TransferStringToHex(identifier); in CreateRemoveStateFlagFile() local 85 std::string storeDir = dataDir + "/" + identifierName + DBConstant::DELETE_KVSTORE_REMOVING; in CreateRemoveStateFlagFile() 102 std::string identifierName = DBCommon::TransferStringToHex(identifier); in CheckRemoveStateAndRetry() local 103 std::string storeDir = dataDir + "/" + identifierName + DBConstant::DELETE_KVSTORE_REMOVING; in CheckRemoveStateAndRetry() 162 std::string identifierName = DBCommon::TransferStringToHex(identifier); in RemoveDBDirectory() local 163 std::string storeDir = dataDir + "/" + identifierName; in RemoveDBDirectory() 164 std::string removingFlag = dataDir + "/" + identifierName + DBConstant::DELETE_KVSTORE_REMOVING; in RemoveDBDirectory() 169 identifierName = DBCommon::TransferStringToHex(identifier); in RemoveDBDirectory() 170 storeDir = dataDir + "/" + identifierName; in RemoveDBDirectory()
|
H A D | kvdb_utils.h | 29 static void GetStoreDirectory(std::string &directory, const std::string &identifierName);
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/ |
H A D | sqlite_multi_ver_data_storage.cpp | 80 …std::string uri = property.path + "/" + property.identifierName + "/" + DBConstant::MULTI_SUB_DIR … in GetVersion() 96 uri_ = property.path + "/" + property_.identifierName + "/" + DBConstant::MULTI_SUB_DIR + "/" + in Open() 378 …std::string currentDb = property.path + "/" + property.identifierName + "/" + DBConstant::MULTI_SU… in BackupCurrentDatabase() 391 …std::string currentDb = property.path + "/" + property.identifierName + "/" + DBConstant::MULTI_SU… in ImportDatabase()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/ |
H A D | distributeddb_storage_rd_register_observer_test.cpp | 182 std::string identifierName; in TearDown() local 184 identifierName = DBCommon::TransferStringToHex("TestGeneralNB"); in TearDown() 185 …DistributedDBToolsUnitTest::RemoveTestDbFiles(g_testDir + "/" + identifierName + "/" + DBConstant:… in TearDown()
|
H A D | distributeddb_storage_index_optimize_test.cpp | 69 string identifierName = DBCommon::TransferStringToHex(hashIdentifierName); in GetKvStoreDirectory() local 70 … string filePath = g_testDir + "/" + identifierName + "/" + DBConstant::SINGLE_SUB_DIR + "/main/"; in GetKvStoreDirectory()
|
H A D | distributeddb_storage_register_observer_test.cpp | 322 std::string identifierName; in TearDown() local 324 identifierName = DBCommon::TransferStringToHex("TestGeneralNB"); in TearDown() 325 …DistributedDBToolsUnitTest::RemoveTestDbFiles(g_testDir + "/" + identifierName + "/" + DBConstant:… in TearDown()
|
H A D | distributeddb_storage_transaction_data_test.cpp | 137 property.identifierName = "31"; in GetCommitTimestamp()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/multiver/ |
H A D | multi_ver_kvdata_storage.cpp | 304 dbProperties.SetStringProp(KvDBProperties::IDENTIFIER_DIR, property.identifierName); in GetVersion() 333 …DatabaseIdentifierCfg config = {property.dataDir, property.identifierName, DBConstant::MULTI_VER_V… in Open() 342 …DatabaseIdentifierCfg config = {property.dataDir, property.identifierName, DBConstant::MULTI_VER_M… in Open() 440 dbProperties.SetStringProp(KvDBProperties::IDENTIFIER_DIR, property.identifierName); in BackupCurrentDatabase() 459 dbProperties.SetStringProp(KvDBProperties::IDENTIFIER_DIR, property.identifierName); in ImportDatabase()
|
H A D | ikvdb_multi_ver_data_storage.h | 43 std::string identifierName; member
|
H A D | multi_ver_natural_store_commit_storage.cpp | 88 dbProperties.SetStringProp(KvDBProperties::IDENTIFIER_DIR, property.identifierName); in GetVersion() 119 dbProperties.SetStringProp(KvDBProperties::IDENTIFIER_DIR, property.identifierName); in Open() 169 …std::string dataDir = property.path + ("/" + property.identifierName + "/" + DBConstant::MULTI_SUB… in Remove() 893 dbProperties.SetStringProp(KvDBProperties::IDENTIFIER_DIR, property.identifierName); in BackupCurrentDatabase() 907 dbProperties.SetStringProp(KvDBProperties::IDENTIFIER_DIR, property.identifierName); in ImportDatabase()
|
H A D | multi_ver_kvdata_storage.h | 47 std::string identifierName; member
|
H A D | multi_ver_natural_store.h | 169 int CreateStoreDirectory(const std::string &directory, const std::string &identifierName);
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/ |
H A D | distributeddb_tools_unit_test.cpp | 92 std::string identifierName = DBCommon::TransferStringToHex(hashIdentifier); in CreateMockSingleDb() local 99 …int errCode = DBCommon::CreateStoreDirectory(dbInfo.dir, identifierName, DBConstant::SINGLE_SUB_DI… in CreateMockSingleDb() 104 properties.uri = dbInfo.dir + "/" + identifierName + "/" + in CreateMockSingleDb() 148 std::string identifierName = DBCommon::TransferStringToHex(hashIdentifier); in OpenMockMultiDb() local 151 commitProperties.uri = dbInfo.dir + "/" + identifierName + "/" + DBConstant::MULTI_SUB_DIR + in OpenMockMultiDb() 157 kvStorageProperties.uri = dbInfo.dir + "/" + identifierName + "/" + in OpenMockMultiDb() 160 metaStorageProperties.uri = dbInfo.dir + "/" + identifierName + "/" + in OpenMockMultiDb() 187 std::string identifierName = DBCommon::TransferStringToHex(hashIdentifier); in CreateMockMultiDb() local 199 properties.uri = dbInfo.dir + "/" + identifierName + "/" + DBConstant::MULTI_SUB_DIR + in CreateMockMultiDb() 699 std::string identifierName = DBCommon::TransferStringToHex(identifier); in GetKvNbStoreDirectory() local [all …]
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/ |
H A D | ikvdb_commit_storage.h | 33 std::string identifierName; member
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/ |
H A D | distributeddb_interfaces_database_test.cpp | 752 std::string identifierName = DBCommon::TransferStringToHex(hashIdentifierName); variable 762 string dbFileName = g_testDir + "/" + identifierName + "/local/local.db"; 766 string walFileName = g_testDir + "/" + identifierName + "/local/local.db-wal"; 770 string shmFileName = g_testDir + "/" + identifierName + "/local/local.db-shm"; 775 std::string dataBaseDir = g_testDir + "/" + identifierName;
|
H A D | distributeddb_interfaces_database_corrupt_test.cpp | 54 std::string identifierName = DBCommon::TransferStringToHex(hashIdentifierName); in GetKvStoreDirectory() local 55 std::string filePath = g_testDir + "/" + identifierName + "/"; in GetKvStoreDirectory()
|
H A D | distributeddb_interfaces_index_unit_test.cpp | 53 string identifierName = DBCommon::TransferStringToHex(hashIdentifierName); in GetKvStoreDirectory() local 54 string filePath = g_testDir + "/" + identifierName + "/"; in GetKvStoreDirectory()
|
H A D | distributeddb_interfaces_nb_delegate_test.cpp | 176 std::string identifierName = DBCommon::TransferStringToHex(hashIdentifier); in CheckDataTimestamp() local 177 … std::string storeDir = g_testDir + "/" + identifierName + "/" + DBConstant::SINGLE_SUB_DIR + "/" + in CheckDataTimestamp()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/ |
H A D | db_common.h | 60 static int CreateStoreDirectory(const std::string &directory, const std::string &identifierName,
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/common/distributeddb/src/ |
H A D | distributeddb_nb_test_tools.cpp | 548 std::string identifierName = TransferStringToHashHexString(identifier); in GetKvNbStoreDirectory() local 549 std::string filePath = dbDir + identifierName + "/" + dbFilePath; in GetKvNbStoreDirectory()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/ |
H A D | db_common.cpp | 194 int DBCommon::CreateStoreDirectory(const std::string &directory, const std::string &identifierName, in CreateStoreDirectory() argument 202 newDir += identifierName; in CreateStoreDirectory()
|
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/demo/hvigor/ |
H A D | hvigor-wrapper.js | 16 …til.isIdStartChar(u))throw Fu(H.Identifier)}G+=u,K="identifierName"},identifierName(){switch(j){ca…
|
/ohos5.0/foundation/distributeddatamgr/pasteboard/services/dialog/PasteboardDialog/hvigor/ |
H A D | hvigor-wrapper.js | 15 ….isIdStartChar(e))throw Ms(as.Identifier)}ps+=e,As="identifierName"},identifierName(){switch(hs){c…
|
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/application/hvigor/ |
H A D | hvigor-wrapper.js | 15 ….isIdStartChar(e))throw Ms(as.Identifier)}ps+=e,As="identifierName"},identifierName(){switch(hs){c…
|