/foundation/distributeddatamgr/preferences/frameworks/native/platform/src/ |
H A D | preferences_db_adapter.cpp | 178 int PreferencesDb::CreateCollection() in CreateCollection() function in OHOS::NativePreferences::PreferencesDb 292 errCode = CreateCollection(); in Init() 324 LOG_INFO("CreateCollection called when Put, file: %{public}s", ExtractFileName(dbPath_).c_str()); in Put() 325 (void)CreateCollection(); in Put() 358 LOG_INFO("CreateCollection called when Delete, file: %{public}s", ExtractFileName(dbPath_).c_str()); in Delete() 359 (void)CreateCollection(); in Delete() 394 LOG_INFO("CreateCollection called when Get, file: %{public}s", ExtractFileName(dbPath_).c_str()); in Get() 395 (void)CreateCollection(); in Get() 472 LOG_INFO("CreateCollection called when GetAll, file: %{public}s", ExtractFileName(dbPath_).c_str()); in GetAll() 473 (void)CreateCollection(); in GetAll() [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/common/include/ |
H A D | grd_api_manager.h | 28 typedef int32_t (*CreateCollection)(GRD_DB *db, const char *collectionName, const char *optionStr, uint32_t flags); typedef 67 CreateCollection CreateCollectionApi = nullptr;
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/include/ |
H A D | kv_store_executor.h | 40 virtual int CreateCollection(const std::string &name, const std::string &option, bool ignoreExists) = 0;
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/ |
H A D | sqlite_store_executor_impl.h | 48 int CreateCollection(const std::string &name, const std::string &option, bool ignoreExists) override;
|
H A D | sqlite_store_executor_impl.cpp | 320 int SqliteStoreExecutorImpl::CreateCollection(const std::string &name, const std::string &option, bool ignoreExists) in CreateCollection() function in DocumentDB::SqliteStoreExecutorImpl
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/include/ |
H A D | document_store.h | 34 int CreateCollection(const std::string &name, const std::string &option, uint32_t flags);
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/executor/document/ |
H A D | grd_document_api_inner.cpp | 33 int ret = db->store_->CreateCollection(name, option, flags); in GRD_CreateCollectionInner()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/common/src/ |
H A D | grd_api_manager.cpp | 84 GRD_DBApiInfo.CreateCollectionApi = (CreateCollection)dlsym(g_library, "GRD_CreateCollection"); in GRD_DBApiInitEnhance()
|
/foundation/distributeddatamgr/preferences/frameworks/native/platform/include/ |
H A D | preferences_db_adapter.h | 150 int CreateCollection();
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/src/ |
H A D | document_store.cpp | 39 int DocumentStore::CreateCollection(const std::string &name, const std::string &option, uint32_t flags) in CreateCollection() function in DocumentDB::DocumentStore 70 errCode = executor_->CreateCollection(lowerCaseName, oriOptStr, ignoreExists); in CreateCollection()
|
/foundation/distributeddatamgr/preferences/frameworks/native/src/ |
H A D | preferences_enhance_impl.cpp | 338 errCode = db_->CreateCollection(); in Clear()
|